1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import FWCore.ParameterSet.Config as cms
MuonGeometryIntoNtupleNoDB = cms.PSet(
DTApplyAlignment = cms.bool(False),
CSCApplyAlignment = cms.bool(False),
DTAlignmentLabel = cms.string(''),
CSCAlignmentLabel = cms.string(''),
DTFromSurveyRcd = cms.bool(False),
CSCFromSurveyRcd = cms.bool(False)
)
MuonGeometryIntoNtupleDefaultDB = cms.PSet(
DTApplyAlignment = cms.bool(True),
CSCApplyAlignment = cms.bool(True),
DTAlignmentLabel = cms.string(''),
CSCAlignmentLabel = cms.string(''),
DTFromSurveyRcd = cms.bool(False),
CSCFromSurveyRcd = cms.bool(False)
)
MuonGeometryIntoNtupleNoScenario = cms.PSet(
MisalignmentScenario = cms.PSet(
),
ApplyMisalignmentScenario = cms.bool(False)
)
MuonGeometryIntoNtuplesNoDT = cms.PSet(
DTSuperLayers = cms.untracked.bool(False),
DTChambers = cms.untracked.bool(False),
DTWheels = cms.untracked.bool(False),
DTStations = cms.untracked.bool(False),
DTLayers = cms.untracked.bool(False)
)
MuonGeometryIntoNtuplesNoCSC = cms.PSet(
CSCLayers = cms.untracked.bool(False),
CSCChambers = cms.untracked.bool(False),
CSCStations = cms.untracked.bool(False)
)
|