CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
castorTTRecord_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 simCastorTTRecord = cms.EDProducer("CastorTTRecord",
4  CastorDigiCollection = cms.InputTag( 'simCastorDigis' ),
5  CastorSignalTS = cms.uint32(4),
6 
7  ttpBits = cms.vuint32( 60, 61, 62, 63 ),
8  TriggerBitNames = cms.vstring( 'L1Tech_CASTOR_0.v0',
9  'L1Tech_CASTOR_TotalEnergy.v0',
10  'L1Tech_CASTOR_EM.v0',
11  'L1Tech_CASTOR_HaloMuon.v0'
12  ),
13  TriggerThresholds = cms.vdouble( 50, # gap trgger threshold
14  # for old jet trigger version cut on total sector energy
15  # 135000, # jet energy threshold per sector
16  48000, # jet energy threshold on had part of sector energy
17  1500, 100, # fist EM threshold, second HAD threshold for egamma trigger
18  50, # muon trigger threshold
19  65000, # low pt jet energy threshold for total sector energy
20  )
21 )