//############################################################## // // Job options file // //============================================================== // // This job options file: // read Generator objects from the Objectivity database // converts them to transient objects // call DumpMC algorithm #include "$EVENTSELECTORATHENAROOTROOT/share/RootEventSelector_jobOptions.txt" ApplicationMgr.DLLs += { "GeneratorObjectsAthenaRoot" }; ApplicationMgr.DLLs += { "AtlfastAlgs"}; ApplicationMgr.DLLs += { "HbookCnv" }; RootSvc.Input = { "Susy2.root" }; //-------------------------------------------------------------- // StoreGate services //-------------------------------------------------------------- ApplicationMgr.DLLs += { "StoreGate", "AthenaServices" }; ApplicationMgr.ExtSvc += { "StoreGateSvc", "StoreGateSvc/DetectorStore" }; ApplicationMgr.EventLoop = "AthenaEventLoopMgr"; ApplicationMgr.OutStreamType = "AthenaOutputStream"; //-------------------------------------------------------------- ApplicationMgr.DLLs += { "DumpMC" }; ApplicationMgr.DLLs += { "GaudiAlg" }; ApplicationMgr.DLLs += { "GaudiAud" }; AuditorSvc.Auditors = { "ChronoAuditor" }; // histogramming ApplicationMgr.HistogramPersistency = "HBOOK"; HistogramPersistencySvc.OutputFile = "atlfast.hbook"; //NtupleSvc.Output = {"FILE1#ntuple.hbook" }; //NtupleSvc.Type = 6; NtupleSvc.Output = {"FILE1 DATAFILE='atlfast.ntup' TYP='HBOOK' OPT='NEW'"}; //-------------------------------------------------------------- // Event related parameters //-------------------------------------------------------------- // Number of events to be processed (default is all) ApplicationMgr.EvtMax = -1; //-------------------------------------------------------------- // Private Application Configuration options //-------------------------------------------------------------- // OUTPUT PRINTOUT LEVEL // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) // you can override this for individual modules if necessary MessageSvc.OutputLevel = 6; // Execution of algorithms given in sequencer // ApplicationMgr.TopAlg = {"Sequencer/TopSequence"}; //-------------------------------------------------------------- // Algorithms Private Options //-------------------------------------------------------------- // GENERATORS SETUP TopSequence.Members = {"Sequencer/Generator","Sequencer/Atlfast"}; // Generator.Members = {"DumpMC"}; #include "AtlfastStandardOptions.txt" // ANALYSYS SETUP //---------------- // Add the user analysis example TopSequence.Members += { "Sequencer/Analysis"}; // Add the simple event counter Analysis.members += {"EventCounter"}; ExampleAnalysis.OutputLevel = 2; //============================================================== // // End of job options file // //##############################################################