//############################################################## // // Job options file // //============================================================== //-------------------------------------------------------------- // General Application Configuration options //-------------------------------------------------------------- #include "$ATHENACOMMONROOT/share/Atlas_Gen.UnixStandardJob.txt" //-------------------------------------------------------------- // Private Application Configuration options //-------------------------------------------------------------- ApplicationMgr.DLLs += { "PythiaGenerator" }; ApplicationMgr.TopAlg = {"PythiaModule"}; // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) MessageSvc.OutputLevel = 5; //-------------------------------------------------------------- // Event related parameters //-------------------------------------------------------------- // Number of events to be processed (default is 10) ApplicationMgr.EvtMax = 10000; //Set the run number and the First event number -- Default is 0 for both EventSelector.FirstEvent = 1; EventSelector.RunNumber=20; //-------------------------------------------------------------- // Algorithms Private Options //-------------------------------------------------------------- PythiaModule.PythiaCommand = {"pypars mstp 82 4", "pypars parp 82 2.1", "pypars mstp 82 4", "pysubs msel 1" }; //--------------------------------------------------------------- // Ntuple service output //--------------------------------------------------------------- //============================================================== // // End of job options file // //##############################################################