//############################################################## // // Job options file // //============================================================== //-------------------------------------------------------------- // General Application Configuration options //-------------------------------------------------------------- #include "$ATHENACOMMONROOT/share/Atlas_Gen.UnixStandardJob.txt" //-------------------------------------------------------------- // Private Application Configuration options //-------------------------------------------------------------- ApplicationMgr.DLLs += { "HerwigModule", "DumpMC" }; ApplicationMgr.DLLs += { "HbookCnv" }; ApplicationMgr.DLLs += { "GeneratorFilters" }; ApplicationMgr.DLLs += {"GaudiAlg"}; ApplicationMgr.HistogramPersistency = "HBOOK"; ApplicationMgr.TopAlg = {"Sequencer/Generator"}; Generator.Members = {"HerwigModule", "ZtoLeptonFilter", "HistSample"}; HistogramPersistencySvc.OutputFile = "herwig.hbook"; NTupleSvc.Output = { "FILE1 DATAFILE='herwigtuple1.hbook' OPT='NEW'" }; // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) MessageSvc.OutputLevel = 6; //-------------------------------------------------------------- // Event related parameters //-------------------------------------------------------------- // Number of events to be processed (default is 10) ApplicationMgr.EvtMax = 33000; //-------------------------------------------------------------- // Algorithms Private Options //-------------------------------------------------------------- HerwigModule.HerwigCommand = {"iproc 2150","modpdf 46", "autpdf CTEQ ", "ptmin 40.", "ptmax 100.", "emmin 80.", "emmax 100."}; LeptonFilter.Ptcut= 5.0 ; //--------------------------------------------------------------- // Ntuple service output //--------------------------------------------------------------- //============================================================== // // End of job options file // //##############################################################