Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 MuonGeometryIntoNtupleNoDB = cms.PSet(
0004     DTApplyAlignment = cms.bool(False),
0005     CSCApplyAlignment = cms.bool(False),
0006     DTAlignmentLabel = cms.string(''),
0007     CSCAlignmentLabel = cms.string(''),
0008     DTFromSurveyRcd = cms.bool(False),
0009     CSCFromSurveyRcd = cms.bool(False)
0010 )
0011 MuonGeometryIntoNtupleDefaultDB = cms.PSet(
0012     DTApplyAlignment = cms.bool(True),
0013     CSCApplyAlignment = cms.bool(True),
0014     DTAlignmentLabel = cms.string(''),
0015     CSCAlignmentLabel = cms.string(''),
0016     DTFromSurveyRcd = cms.bool(False),
0017     CSCFromSurveyRcd = cms.bool(False)
0018 )
0019 MuonGeometryIntoNtupleNoScenario = cms.PSet(
0020     MisalignmentScenario = cms.PSet(
0021 
0022     ),
0023     ApplyMisalignmentScenario = cms.bool(False)
0024 )
0025 MuonGeometryIntoNtuplesNoDT = cms.PSet(
0026     DTSuperLayers = cms.untracked.bool(False),
0027     DTChambers = cms.untracked.bool(False),
0028     DTWheels = cms.untracked.bool(False),
0029     DTStations = cms.untracked.bool(False),
0030     DTLayers = cms.untracked.bool(False)
0031 )
0032 MuonGeometryIntoNtuplesNoCSC = cms.PSet(
0033     CSCLayers = cms.untracked.bool(False),
0034     CSCChambers = cms.untracked.bool(False),
0035     CSCStations = cms.untracked.bool(False)
0036 )
0037