CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
eeBadScFilter_cfi.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 eeBadScFilter = cms.EDFilter(
5  "EEBadScFilter",
6  # the EE rechit collection found in AOD
7  EERecHitSource = cms.InputTag('reducedEcalRecHitsEE'),
8  # minimum rechit energy used for rechit flag check
9  EminHit = cms.double(1000.),
10  # minimum transverse energy of the 5x5 array for each bad SC
11  EtminSC = cms.double(1000.),
12  # size of the crystal array (default = 5 -> 5x5 array)
13  SCsize = cms.int32(5),
14  # minimum number of hits above EminHit with !kGood flags
15  nBadHitsSC = cms.int32(2),
16  #coordinates of the crystals in the centre of each bad supercrystal
17  # packed into a single integer in the form iz,ix,iy
18  # for instance -1023023 -> ix=23, iy=23, iz=-1
19  badscEE = cms.vint32(-1023023,1048098,-1078063),
20  taggingMode = cms.bool(False),
21  #prints debug info for each supercrystal if set to true
22  debug = cms.bool(False),
23 )