//############################################################## // // 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; //-------------------------------------------------------------- // Algorithms Private Options // this is the "jet sample" for DC1 // These produce QCD jets, top, bottom, single photon Z and W. // The minimum P_T is set to 17 GeV. // There is no rapidity restriction. K_L and Lambdas are stable. //-------------------------------------------------------------- PythiaModule.PythiaCommand = {"pydatr mrpy 1 98457671", "pysubs msel 0", "pysubs ckin 3 17.", "pysubs msub 11 1", "pysubs msub 12 1", "pysubs msub 13 1", "pysubs msub 28 1", "pysubs msub 53 1", "pysubs msub 68 1", "pysubs msub 81 1", "pysubs msub 82 1", "pysubs msub 14 1", "pysubs msub 29 1", "pysubs msub 1 1", "pysubs msub 2 1", "pypars mstp 82 4", "pypars mstp 7 6", "pydat1 mstj 11 3", "pydat1 mstj 22 2", "pydat1 parj 54 -0.07", "pydat1 parj 55 -0.006", "pypars parp 82 2.2"}; //--------------------------------------------------------------- // Ntuple service output //--------------------------------------------------------------- //============================================================== // // End of job options file // //##############################################################