CMS 3D CMS Logo

Variables

EcalSeverityLevelESProducer_cfi Namespace Reference

Variables

tuple ecalSeverityLevel
tuple essourceEcalSev

Variable Documentation

Initial value:
00001 cms.ESProducer("EcalSeverityLevelESProducer",
00002 
00003  # map EcalRecHit::Flag into EcalSeverityLevel
00004  # for some reason hex notation does not seem to work with vuint32
00005                                        
00006  flagMask=cms.vuint32( 1,    #0x00000001, # kGood               ->kGood
00007                        114,  #0x00000072, # kPoorReco,kPoorCalib,
00008                                           # kNoise,kSaturated   ->kProblematic
00009                        896,  #0x00000380, # LERecovered,TowRecovered
00010                                           #                     ->kRecovered
00011                        4,    #0x00000004, # kOutoftime          ->kTime 
00012                        49152,#0x0000C000, # kWeird,kDiweird     ->kWeird
00013                        3080  #0x00000C08  # kFaultyhw,kDead,kKilled
00014                                           #                     ->kBad
00015  ),
00016  # map ChannelStatus flags into EcalSeverityLevel
00017  dbstatusMask=cms.vuint32( 1,   #0x00000001, # good-> good;
00018                            2046,#0x000007FE, # status 1..10 -> problematic
00019                            0,   #0x00000000, # nothing->recovered
00020                            0,   #0x00000000, # nothing->time
00021                            0,   #0x00000000, #nothing->weird
00022                            64512#0x0000FC00  #status 11..16 ->bad
00023      ),
00024  #return kTime only if the rechit is above this threshold            
00025  timeThresh=cms.double(2.0)                                  
00026  )

Definition at line 17 of file EcalSeverityLevelESProducer_cfi.py.

Initial value:
00001 cms.ESSource("EmptyESSource",
00002                     recordName = cms.string("EcalSeverityLevelAlgoRcd"),
00003                     firstValid = cms.vuint32(1),
00004                     iovIsRunNotTime = cms.bool(True)
00005                     )

Definition at line 10 of file EcalSeverityLevelESProducer_cfi.py.