//############################################################## // // Job options file for GRB test program // //================================================== // default option for FluxSvc #include "$FLUXSVCROOT/src/defaultOptions.txt" // This will add the dll and set the top algorithm to GRBtestAlg. ApplicationMgr.DLLs += { "GRB" }; ApplicationMgr.TopAlg = {"GRBTestAlg"}; // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) MessageSvc.OutputLevel = 2; // Adding the source libraries... // Set the default for a source library document FluxSvc.source_lib ={"$(FLUXSVCROOT)/xml/source_library.xml"}; // Append to a list of source library documents FluxSvc.source_lib += {"$(GRBROOT)/xml/GRB_user_library.xml"}; //------------------------------------------------------------ // Primary source name (default GRBSpectrum) // From here we can select the model for GRB ... //GRBTestAlg.source_name="GRBspectrum_Gal"; GRBTestAlg.source_name="GRBspectrum_Test"; // with fixed direcion //GRBTestAlg.source_name="GRBobsSpectrum_Gal"; //GRBTestAlg.source_name="GRBobsspectrum_Test"; // with fixed direcion //GRBTestAlg.source_name="GRBmanager_Gal"; //------------------------------------------------------------ // Background source name GRBTestAlg.background_name={"backgndmix"}; //------------------------------------------------------------ //Maximum observation time (default 10 s) GRBTestAlg.observation_time=10; // Maximum number of photons generated (default 100000) GRBTestAlg.EvtMax=100; //----------------- Saveing options -------------------------- // Is possible to save in root file //GRBTestAlg.savefile={"root"}; // Is possible to save also in an ascii file //GRBTestAlg.savefile+={"ascii"}; //------------------------------------------------------------ // No idea... ApplicationMgr.EvtSel = "NONE"; // How many times the application will run... ApplicationMgr.EvtMax = 1; //============================================================== //============================================================== // // End of job options file // //##############################################################