################################################################################ # LHC-UE-EE-SCR-CTEQ6L1 is an underlying-event tune to UE data from CDF and # ATLAS at 900 GeV, 1.8 TeV and 7.0 TeV. # # NEW: The formula for the center-of-mass energy extrapolation of the MinKT # parameter in the multi-parton interaction model is hard-coded now: # # MinKT(sqrt(s)) = pt_0 * (sqrt(s) / E_0)^b # # The formula is not derived from first principles. It only extrapolates # between our best underlying-event tunes at 0.9, 1.8 and 7 TeV, with all other # parameters fixed. # # Usage: Just set the collision energy and run the generator. # # More information can be obtained from this Herwig++ wiki page: # http://projects.hepforge.org/herwig/trac/wiki/MB_UE_tunes ################################################################################ ################################################## # Center-of-mass energy ################################################## cd /Herwig/Generators set LHCGenerator:EventHandler:LuminosityFunction:Energy 7000.0 ################################################## # Technical parameters for this run ################################################## set LHCGenerator:NumberOfEvents 10000000 set LHCGenerator:RandomNumberGenerator:Seed 31122001 set LHCGenerator:PrintEvent 10 set LHCGenerator:MaxErrors 1000000 set LHCGenerator:DebugLevel 0 set LHCGenerator:DumpPeriod -1 set LHCGenerator:DebugEvent 0 ################################################## # Running of alpha_s ################################################## cd /Herwig create Herwig::O2AlphaS O2AlphaS set Model:QCD/RunningAlphaS O2AlphaS ################################################################################ # NOTE: ThePEG has to be linked against LHAPDF at compile time to be able to # use the CTEQ6L1 pdfs. ################################################################################ cd /Herwig/Partons create ThePEG::LHAPDF myPDFset ThePEGLHAPDF.so set myPDFset:PDFName cteq6ll.LHpdf set myPDFset:RemnantHandler HadronRemnants set /Herwig/Particles/p+:PDF myPDFset set /Herwig/Particles/pbar-:PDF myPDFset ################################################## # MPI energy extrapolation settings ################################################## set /Herwig/UnderlyingEvent/MPIHandler:EnergyExtrapolation Power set /Herwig/UnderlyingEvent/MPIHandler:ReferenceScale 7000.*GeV set /Herwig/UnderlyingEvent/MPIHandler:Power 0.21 set /Herwig/UnderlyingEvent/MPIHandler:pTmin0 2.64*GeV ################################################## # Energy-independent MPI parameters ################################################## # Colour reconnection settings set /Herwig/Hadronization/ColourReconnector:ColourReconnection Yes set /Herwig/Hadronization/ColourReconnector:Algorithm Statistical set /Herwig/Hadronization/ColourReconnector:InitialTemperature 0.01 set /Herwig/Hadronization/ColourReconnector:AnnealingSteps 10 set /Herwig/Hadronization/ColourReconnector:AnnealingFactor 0.21 set /Herwig/Hadronization/ColourReconnector:TriesPerStepFactor 0.66 # Colour Disrupt settings set /Herwig/Partons/RemnantDecayer:colourDisrupt 0.8 # inverse hadron radius set /Herwig/UnderlyingEvent/MPIHandler:InvRadius 1.5 # MPI model settings set /Herwig/UnderlyingEvent/MPIHandler:softInt Yes set /Herwig/UnderlyingEvent/MPIHandler:twoComp Yes set /Herwig/UnderlyingEvent/MPIHandler:DLmode 2 ################################################## # Matrix element and cuts for soft-inclusive jet # production (minimum bias) ################################################## # Matrix element cd /Herwig/MatrixElements/ insert SimpleQCD:MatrixElements[0] MEMinBias # tell the MPI handler that the primary subprocess is QCD jet production set /Herwig/UnderlyingEvent/MPIHandler:IdenticalToUE 0 # Cuts for soft-inclusive events cd /Herwig/Cuts set JetKtCut:MinKT 0.0*GeV set QCDCuts:MHatMin 0.0*GeV set QCDCuts:X1Min 0.01 set QCDCuts:X2Min 0.01 ################################################## # Save run for later usage with 'Herwig++ run' ################################################## cd /Herwig/Generators saverun LHC-UE-EE-SCR-CTEQ6L1 LHCGenerator