CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DiTaus_cfi.py
Go to the documentation of this file.
2 
3 # Back to back hadronic taus
4 source = cms.Source("PythiaSource",
5  Phimin = cms.untracked.double(0.0),
6  maxEventsToPrint = cms.untracked.int32(5),
7  pythiaPylistVerbosity = cms.untracked.int32(1),
8  # possibility to run single or double back-to-back particles with PYTHIA
9  # if ParticleID = 0, run PYTHIA
10  ParticleID = cms.untracked.int32(15),
11  pythiaHepMCVerbosity = cms.untracked.bool(True),
12  Etamin = cms.untracked.double(0.0),
13  DoubleParticle = cms.untracked.bool(True),
14  Phimax = cms.untracked.double(360.0),
15  Ptmin = cms.untracked.double(15.0),
16  Ptmax = cms.untracked.double(60.0),
17  Etamax = cms.untracked.double(2.5),
18  PythiaParameters = cms.PSet(
19 # process.pythiaUESettingsBlock,
20  tauHadronicalOnly = cms.vstring('MDME( 89, 1) = 0 !no tau decay into electron', 'MDME( 90,1) = 0 !no tau decay into muon'),
21  # This is a vector of ParameterSet names to be read, in this order
22  parameterSets = cms.vstring('tauHadronicalOnly')
23  )
24 )
25