Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 SectCollParametersBlock = cms.PSet(
0004     SectCollParameters = cms.PSet(
0005         # Programmable Coarse Sync BX adjustment for SC in MB4 (double station)
0006         SCCSP5 = cms.int32(0),
0007         # Programmable Coarse Sync BX adjustment for SC in MB2
0008         SCCSP2 = cms.int32(0),
0009         # Programmable Coarse Sync BX adjustment for SC in MB3
0010         SCCSP3 = cms.int32(0),
0011         # Enabling carry in SC station MB4
0012         SCECF4 = cms.bool(False),
0013         # Programmable Coarse Sync BX adjustment for SC in MB1
0014         SCCSP1 = cms.int32(0),
0015         # Enabling carry in SC station MB2
0016         SCECF2 = cms.bool(False),
0017         # Enabling carry in SC station MB3
0018         SCECF3 = cms.bool(False),
0019         # Programmable Coarse Sync BX adjustment for SC in MB4
0020         SCCSP4 = cms.int32(0),
0021         # Enabling carry in SC station MB1
0022         SCECF1 = cms.bool(False),
0023         # Debug falg
0024         Debug = cms.untracked.bool(False)
0025     )
0026 )
0027 
0028