CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CommonParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 commonParameters = cms.PSet(
4  HepMCProductLabel = cms.InputTag('generatorSmeared'),
5  Verbosity = cms.bool(False),
6  EtaCut = cms.double(8.2),
7  useBeamPositionFromLHCInfo=cms.bool(False), # if False, it will be taken from the BeamSpotObjectsRcd
8  produceHitsRelativeToBeam = cms.bool(True),
9  MomentumCut= cms.double(3000),
10  PPSRegionStart_45 = cms.double(203),
11  PPSRegionStart_56 = cms.double(203)
12 )
13