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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("SiPixelInclusiveReader")
process.load('Configuration/StandardSequences/Services_cff')
process.load('Configuration/StandardSequences/GeometryIdeal_cff')
process.load('Configuration/StandardSequences/MagneticField_38T_cff')
process.load('Configuration/StandardSequences/Sim_cff')
process.load('Configuration/StandardSequences/Digi_cff')
process.load('Configuration/StandardSequences/SimL1Emulator_cff')
process.load('Configuration/StandardSequences/L1TriggerDefaultMenu_cff')
process.load('Configuration/StandardSequences/DigiToRaw_cff')
process.load('Configuration/StandardSequences/RawToDigi_cff')
process.load('Configuration/StandardSequences/Reconstruction_cff')
process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
process.GlobalTag.globaltag = 'MC_31X_V3::All'
###### OUTPUT HISTOGRAM FILE NAME #######
process.TFileService = cms.Service("TFileService",
fileName = cms.string("histo.root")
)
##### DATABASE CONNECTION INFO ######
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)
process.source = cms.Source("EmptySource",
numberEventsInRun = cms.untracked.uint32(10),
firstRun = cms.untracked.uint32(1)
)
process.Timing = cms.Service("Timing")
process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck",
ignoreTotal = cms.untracked.int32(0)
)
####### GAIN READERS ######
process.SiPixelCondObjOfflineReader = cms.EDAnalyzer("SiPixelCondObjOfflineReader",
process.SiPixelGainCalibrationServiceParameters,
useSimRcd = cms.bool(False)
)
process.SiPixelCondObjOfflineSimReader = cms.EDAnalyzer("SiPixelCondObjOfflineReader",
process.SiPixelGainCalibrationServiceParameters,
useSimRcd = cms.bool(True)
)
process.SiPixelCondObjForHLTReader = cms.EDAnalyzer("SiPixelCondObjForHLTReader",
process.SiPixelGainCalibrationServiceParameters,
useSimRcd = cms.bool(False)
)
process.SiPixelCondObjForHLTSimReader = cms.EDAnalyzer("SiPixelCondObjForHLTReader",
process.SiPixelGainCalibrationServiceParameters,
useSimRcd = cms.bool(True)
)
####### LORENTZ ANGLE READER ######
process.SiPixelLorentzAngleReader = cms.EDAnalyzer("SiPixelLorentzAngleReader",
printDebug = cms.untracked.bool(False),
useSimRcd = cms.bool(False)
)
process.SiPixelLorentzAngleSimReader = cms.EDAnalyzer("SiPixelLorentzAngleReader",
printDebug = cms.untracked.bool(False),
useSimRcd = cms.bool(True)
)
####### CABLING MAP READER ######
process.SiPixelFedCablingMapAnalyzer = cms.EDAnalyzer("SiPixelFedCablingMapAnalyzer")
####### QUALITY READER #######
process.SiPixelBadModuleReader = cms.EDAnalyzer("SiPixelBadModuleReader")
####### TEMPLATE OBJECT READER ######
#Change to True if you would like a more detailed error output
wantDetailedOutput = False
#Change to True if you would like to output the full template database object
wantFullOutput = False
process.SiPixelTemplateDBObjectReader = cms.EDAnalyzer("SiPixelTemplateDBObjectReader",
siPixelTemplateCalibrationLocation = cms.string(
"CalibTracker/SiPixelESProducers"),
wantDetailedTemplateDBErrorOutput = cms.bool(wantDetailedOutput),
wantFullTemplateDBOutput = cms.bool(wantFullOutput))
####### DO ALL READERS (OR SELECT ONE YOU WANT) ########
process.p = cms.Path(
process.SiPixelCondObjOfflineReader*
#process.SiPixelCondObjOfflineSimReader*
process.SiPixelLorentzAngleReader*
#process.SiPixelLorentzAngleSimReader*
process.SiPixelFedCablingMapAnalyzer*
process.SiPixelCondObjForHLTReader*
#process.SiPixelCondObjForHLTSimReader*
process.SiPixelTemplateDBObjectReader*
process.SiPixelBadModuleReader
)
|