CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalDeadCellDeltaRFilter_cfi.py
Go to the documentation of this file.
2 
3 simpleDRfilter = cms.EDFilter('simpleDRfilter',
4 
5 # In debug mode, there are print-out if the MET is due to dead cell or cracks
6  debug = cms.untracked.bool( False ),
7 # No usage now
8  printSkimInfo = cms.untracked.bool( False ),
9 
10  taggingMode = cms.bool(False),
11 
12 # It's written in general that one can put pf, calo and tracking jets
13  jetInputTag = cms.InputTag('ak5PFJets'),
14 # The pt and eta cuts applied, for instance, pt>30 && |eta|<9999
15  jetSelCuts = cms.vdouble(30, 9999), # pt, eta
16 
17 # This is also in general that one can put pf, tc and calo met
18  metInputTag = cms.InputTag('pfMet'),
19 
20 # If enabled, a root file will be produced with name give in profileRootName.
21 # One can produce histograms. Currently, no histograms are produced.
22  makeProfileRoot = cms.untracked.bool( False ),
23  profileRootName = cms.untracked.string( "simpleDRfilter.root" ),
24 
25 # The status of masked cells we want to pick from global tag, for instance here, >=1
26 # Don't need to change ususally.
27  maskedEcalChannelStatusThreshold = cms.int32( 1 ),
28 # The channels status we want to evaluate
29 # positive numbers, e.g., 12, means only channels with status 12 are considered
30 # negative numbers, e.g., -12, means channels with status >=12 are all considered
31  chnStatusToBeEvaluated = cms.int32(-12),
32 
33 # No usage now
34  isProd = cms.untracked.bool( False ),
35 
36 # If enabled, also check if MET is due to cracks or not. If found, events are filtered
37 # (if doFilter is enabled)
38  doCracks = cms.untracked.bool( False ),
39 
40 # No usage now
41  verbose = cms.int32( 0 ),
42 
43 # Simple DR filter 0 : dphi cut of jet to MET 1 : dR cut of jets to masked channles
44  simpleDRfilterInput = cms.vdouble(0.5, 0.3), # 0.5, 0.3 are what RA1 use
45 
46 # Definition of cracks for HB/HE and HE/HF
47  cracksHBHEdef = cms.vdouble(1.3, 1.7), # crab between 1.3 and 1.7
48  cracksHEHFdef = cms.vdouble(2.8, 3.2), # crab between 2.8 and 3.2
49 
50 )