Initial value:
2 # Use compressions settings of TFile
3 # see https://root.cern.ch/root/html534/TFile.html#TFile:SetCompressionSettings
4 # settings = 100 * algorithm + level
5 # level is from 1 (small) to 9 (large compression)
6 # algo: 1 (ZLIB), 2 (LMZA)
7 # see more about compression & performance: https://root.cern.ch/root/html534/guides/users-guide/InputOutput.html#compression-and-performance
8 compressionSettings = 207
9 process.analysis = cms.EDAnalyzer("OverlapValidation",
10 usePXB = cms.bool(True),
11 usePXF = cms.bool(True),
12 useTIB = cms.bool(True),
13 useTOB = cms.bool(True),
14 useTID = cms.bool(True),
15 useTEC = cms.bool(True),
16 compressionSettings = cms.untracked.int32(compressionSettings),
17 ROUList = cms.vstring('TrackerHitsTIBLowTof',
18 'TrackerHitsTIBHighTof',
19 'TrackerHitsTOBLowTof',
20 'TrackerHitsTOBHighTof'),
21 trajectories = cms.InputTag("FinalTrackRefitter"),
22 associatePixel = cms.bool(False),
23 associateStrip = cms.bool(False),
24 associateRecoTracks = cms.bool(False),
25 tracks = cms.InputTag("FinalTrackRefitter"),
26 barrelOnly = cms.bool(False)
Definition at line 1 of file overlapValidationTemplates.py.