CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
trivialCutFlow_cff.py
Go to the documentation of this file.
2 
3 from PhysicsTools.SelectorUtils.centralIDRegistry import central_id_registry
4 
5 trivialCutFlow = cms.PSet(
6  idName = cms.string("trivialCutFlow"),
7  cutFlow = cms.VPSet(
8  cms.PSet( cutName = cms.string("MinPtCut"),
9  minPt = cms.double(10.0),
10  needsAdditionalProducts = cms.bool(False),
11  isIgnored = cms.bool(False) ),
12  cms.PSet( cutName = cms.string("MaxAbsEtaCut"),
13  maxEta = cms.double(2.5),
14  needsAdditionalProducts = cms.bool(False),
15  isIgnored = cms.bool(False) )
16  )
17 )
18 
19 central_id_registry.register(trivialCutFlow.idName,
20  '406a42716bb40f14256446a98e25c1de')