1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("myCTPPSRawToDigi")
process.load("FWCore.MessageLogger.MessageLogger_cfi")
process.load("CondFormats.PPSObjects.CTPPSPixelDAQMappingESSourceXML_cfi")
process.ctppsPixelDAQMappingESSourceXML.configuration = cms.VPSet(
# example configuration block:
cms.PSet(
validityRange = cms.EventRange("1:min - 999999999:max"),
mappingFileNames = cms.vstring("CondFormats/PPSObjects/xml/rpix_mapping_220_far.xml"),
maskFileNames = cms.vstring("CondFormats/PPSObjects/xml/rpix_channel_mask_220_far.xml")
)
)
process.load("Configuration.StandardSequences.Services_cff")
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1))
process.source = cms.Source("PoolSource",
# fileNames = cms.untracked.vstring('file:rawdata.root')
labelRawDataLikeMC = cms.untracked.bool(False),
fileNames = cms.untracked.vstring(
#"file:./PixelAlive_1294_153_RAW_v3.root"
#"file:/afs/cern.ch/work/k/kas/public/PXtrees/PixelAlive_1294_151_RAW_v2.root"
'root://eoscms//eos/cms/store/user/jjhollar/012017_PixelDAQTests/PixelAlive_1462_2_RAW.root',
'root://eoscms//eos/cms/store/user/jjhollar/012017_PixelDAQTests/PixelAlive_1463_2_RAW.root'
),
duplicateCheckMode = cms.untracked.string("checkEachFile")
)
process.load("EventFilter.CTPPSRawToDigi.ctppsPixelRawToDigi_cfi")
process.ctppsPixelDigis.inputLabel = 'source'
process.MessageLogger = cms.Service("MessageLogger",
debugModules = cms.untracked.vstring('ctppsPixelDigis'),
destinations = cms.untracked.vstring('r2d'),
r2d = cms.untracked.PSet( threshold = cms.untracked.string('DEBUG'))
)
process.out = cms.OutputModule("PoolOutputModule",
# fileName = cms.untracked.string('file:digis_PixelAlive_1462_2_RAW.root'),
fileName = cms.untracked.string('file:digis_PixelAlive_P5_2_RAW.root'),
outputCommands = cms.untracked.vstring("keep *")
)
process.p = cms.Path(process.ctppsPixelDigis)
process.ep = cms.EndPath(process.out)
|