File indexing completed on 2023-03-17 10:49:35
0001
0002 import FWCore.ParameterSet.Config as cms
0003
0004 process = cms.Process("Demo")
0005
0006 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
0007
0008 readFiles = cms.untracked.vstring()
0009 readFiles.extend( [
0010 '/store/data/BeamCommissioning08/BeamHalo/RECO/CRUZET4_V4P_CSCSkim_trial_v3/0000/00BEE8CD-1181-DD11-8F58-001A4BA82F4C.root'
0011 ] );
0012
0013 process.source = cms.Source("PoolSource",
0014 fileNames = readFiles
0015 )
0016
0017 process.TFileService = cms.Service("TFileService",
0018 fileName = cms.string("output.root"),
0019 closeFileFast = cms.untracked.bool(True)
0020 )
0021
0022 process.analyze = cms.EDAnalyzer("CSCSharesInputTest",
0023 CSCRecHitCollection = cms.InputTag("csc2DRecHits","","Rec"),
0024 MuonCollection = cms.InputTag("STAMuons","","Rec")
0025 )
0026
0027
0028
0029 process.p = cms.Path(process.analyze)