Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:25

0001 # Configuration file to run stubs/CSCGeometryAsChambers
0002 # to dump CSC geometry information - from db
0003 # Tim Cox 18.10.2012 for 61X
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("GeometryTest")
0008 process.load('Configuration.Geometry.GeometryExtended_cff')
0009 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0010 process.load('Geometry.CommonTopologies.globalTrackingGeometry_cfi')
0011 process.load('Geometry.MuonNumbering.muonNumberingInitialization_cfi')
0012 
0013 process.GlobalTag.globaltag = 'MC_61_V2::All'
0014 process.load("Alignment.CommonAlignmentProducer.FakeAlignmentSource_cfi")
0015 process.preferFakeAlign = cms.ESPrefer("FakeAlignmentSource") 
0016 
0017 process.load("CondCore.DBCommon.CondDBCommon_cfi")
0018 
0019 process.source = cms.Source("EmptySource")
0020 
0021 process.maxEvents = cms.untracked.PSet(
0022     input = cms.untracked.int32(1)
0023 )
0024 process.MessageLogger = cms.Service("MessageLogger",
0025     cerr = cms.untracked.PSet(
0026         enable = cms.untracked.bool(False)
0027     ),
0028     debugModules = cms.untracked.vstring('*'),
0029     files = cms.untracked.PSet(
0030         debug = cms.untracked.PSet(
0031             CSC = cms.untracked.PSet(
0032                 limit = cms.untracked.int32(-1)
0033             ),
0034             CSCGeometryBuilderFromDDD = cms.untracked.PSet(
0035                 limit = cms.untracked.int32(-1)
0036             ),
0037             CSCNumbering = cms.untracked.PSet(
0038                 limit = cms.untracked.int32(-1)
0039             ),
0040             DEBUG = cms.untracked.PSet(
0041                 limit = cms.untracked.int32(0)
0042             ),
0043             INFO = cms.untracked.PSet(
0044                 limit = cms.untracked.int32(0)
0045             ),
0046             RadialStripTopology = cms.untracked.PSet(
0047                 limit = cms.untracked.int32(-1)
0048             ),
0049             extension = cms.untracked.string('.out'),
0050             noLineBreaks = cms.untracked.bool(True),
0051             threshold = cms.untracked.string('DEBUG')
0052         ),
0053         errors = cms.untracked.PSet(
0054             extension = cms.untracked.string('.out'),
0055             threshold = cms.untracked.string('ERROR')
0056         ),
0057         log = cms.untracked.PSet(
0058             extension = cms.untracked.string('.out')
0059         )
0060     )
0061 )
0062 
0063 process.producer = cms.EDAnalyzer("CSCGeometryAsChambers")
0064 
0065 process.p1 = cms.Path(process.producer)
0066 process.CSCGeometryESModule.debugV = True
0067