Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("Demo")
0004 
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006 process.load("Geometry.MuonCommonData.muonIdealGeometryXML_cfi")
0007 process.load("Geometry.RPCGeometry.rpcGeometry_cfi")
0008 process.load("Geometry.CSCGeometry.cscGeometry_cfi")
0009 process.load("Geometry.DTGeometry.dtGeometry_cfi")
0010 process.load("Geometry.MuonNumbering.muonNumberingInitialization_cfi")
0011 process.load("DQMServices.Components.MEtoEDMConverter_cfi")
0012 
0013 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0014 
0015 from Configuration.AlCa.GlobalTag import GlobalTag
0016 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_mc', '')
0017 
0018 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) )
0019 
0020 if hasattr(process,'MessageLogger'):
0021     process.MessageLogger.RPCGeometry=dict()
0022 
0023 process.source = cms.Source("EmptySource"
0024     # replace 'myfile.root' with the source file you want to use
0025 )
0026 
0027 process.demo = cms.EDAnalyzer('RPCCSC'
0028 )
0029 
0030 
0031 process.p = cms.Path(process.demo)