Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:50

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 #        string TestName="AFEBThresholdScan"
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("PROD")
0008 process.source = cms.Source("DaqSource",
0009     maxEvents = cms.untracked.int32(100),
0010     pset = cms.PSet(
0011         fileNames = cms.untracked.vstring('/afs/cern.ch/user/t/teren/scratch0/Data/RunNum500Evs0to9999.bin')
0012     ),
0013     reader = cms.string('CSCFileReader')
0014 )
0015 
0016 process.cscunpacker = cms.EDProducer("CSCDCCUnpacker",
0017     Debug = cms.untracked.bool(False),
0018     PrintEventNumber = cms.untracked.bool(False),
0019     theMappingFile = cms.FileInPath('OnlineDB/CSCCondDB/test/csc_slice_test_map.txt'),
0020     UseExaminer = cms.untracked.bool(False)
0021 )
0022 
0023 process.analyzer = cms.EDAnalyzer("CSCAFEBAnalyzer",
0024     #        string HistogramFile = 'hist_AnodeThr30_RunNum500Evs0to9999.root'
0025     HistogramFile = cms.string('hist_AnodeConnect_RunNum500Evs0to9999.root'),
0026     TestName = cms.string('AFEBConnectivity'),
0027     CSCSrc = cms.InputTag("cscunpacker","MuonCSCWireDigi")
0028 )
0029 
0030 process.p = cms.Path(process.cscunpacker*process.analyzer)
0031