Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TestME0Segment")
0004 process.load("FWCore.MessageService.MessageLogger_cfi")
0005 process.load('Configuration.Geometry.GeometryExtended2023D6Reco_cff')
0006 # process.load('Configuration.Geometry.GeometryExtended2023HGCalMuonReco_cff')
0007 # process.load("Geometry.GEMGeometry.me0Geometry_cfi")
0008 # process.load("Geometry.MuonNumbering.muonNumberingInitialization_cfi")
0009 
0010 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
0011 
0012 process.source = cms.Source("PoolSource",
0013     fileNames = cms.untracked.vstring(
0014         'file:/afs/cern.ch/work/m/mmaggi/ME0/SEGMENTS/CMSSW_9_0_0_pre1/src/McProd/nick_me0segment.root'
0015     )
0016 )
0017 
0018 process.me0s = cms.EDAnalyzer('TestME0SegmentAnalyzer',
0019                               RootFileName = cms.untracked.string("TestME0NickSegmentHistogramsRU.root"),
0020 
0021 )
0022 
0023 process.p = cms.Path(process.me0s)