Skip to content

Instantly share code, notes, and snippets.

@nsahoo
Last active October 4, 2016 12:29
Show Gist options
  • Save nsahoo/9224910 to your computer and use it in GitHub Desktop.
Save nsahoo/9224910 to your computer and use it in GitHub Desktop.
MC simulation
################
# Instructions #
################
1. copy the gen fragment to Configuration/GenProduction/python/SevenTeV or EightTeV directory
2. if dec file is not present in repository, copy it to GeneratorInterface/ExternalDecays/data/
3. do scramv1 b
# produce just GEN-MC
cmsDriver.py Configuration/GenProduction/python/SevenTeV/PYTHIA6_BuToKstarMuMu_EtaPtFilter_TuneZ2_7TeV_cff.py -s GEN --no_output --conditions START42_V14B::All --datatier GEN-SIM-RAW --eventcontent RAWSIM --customise=Configuration/GenProduction/customise_SilentMessageLogger.py -n 100000 --no_exec
# produce GEN-SIM-MC
cmsDriver.py Configuration/GenProduction/python/EightTeV/PYTHIA6_BuJpsiK_TuneZ2star_8TeV_cff.py -s GEN,SIM --conditions START53_V19F::All --datatier GEN-SIM --eventcontent RAWSIM --beamspot Realistic8TeVCollision --customise=Configuration/GenProduction/customise_SilentMessageLogger.py -n 100000 --no_exec
cmsDriver.py Configuration/GenProduction/python/SevenTeV/PYTHIA6_BuToPsi2SK_TuneZ2_7TeV_cff.py --fileout file:BPH-Summer11Leg-00015_BuToPsi2SK_cfg.root --mc --eventcontent RAWSIM --customise SimG4Core/Application/reproc2011_2012_cff.customiseG4,Configuration/DataProcessing/Utils.addMonitoring --datatier GEN-SIM --conditions START53_LV4::All --beamspot Realistic7TeV2011CollisionV2 --step GEN,SIM --python_filename BPH-Summer11Leg-00015_BuToPsi2SK_cfg.py --no_exec -n 100000
## BORROWED FROM MAURO ##
### Create just GEN-MC ###
# Remove only the mumugenfilter from GEN-Fragment.py
cmsDriver.py Configuration/Generator/python/$1 -s GEN --conditions START53_V19F::All --datatier GEN-SIM --eventcontent GENRAW -n 100 --no_exec
### Create just GEN-SIM-MC for official production tests ###
#cmsDriver.py Configuration/Generator/python/$1 -s GEN,SIM --conditions START53_V19F::All --datatier GEN-SIM --eventcontent RAWSIM -n 100 --no_exec
### Create MC up to HLT ###
#cmsDriver.py Configuration/Generator/python/$1 -s GEN,SIM,DIGI,L1,DIGI2RAW,HLT --conditions START53_V19F::All --datatier GEN-SIM-RAW --eventcontent RAWSIM -n 100 --no_exec
### Create RECO-MC from MC up to HLT (output RECO + SIM) ###
#cmsDriver.py Configuration/Generator/python/$1 -s RAW2DIGI,RECO --conditions START53_V19F::All --datatier GEN-SIM-RECO --eventcontent RECOSIM --filein file:name.root -n 100 --no_exec
### Create RECO-MC from MC up to HLT (output AOD + SIM) ###
#cmsDriver.py Configuration/Generator/python/$1 -s RAW2DIGI,RECO --conditions START53_V19F::All --datatier GEN-SIM-RECO --eventcontent AODSIM --filein file:name.root -n 100 --no_exec
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment