CMS 3D CMS Logo

SiStripHitResol_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Use compressiong settings of TFile
4 # see https://root.cern.ch/root/html534/TFile.html#TFile:SetCompressionSettings
5 # settings = 100 * algorithm + level
6 # level is from 1 (small) to 9 (large compression)
7 # algo: 1 (ZLIB), 2 (LMZA)
8 # see more about compression & performance: https://root.cern.ch/root/html534/guides/users-guide/InputOutput.html#compression-and-performance
9 compressionSettings = 201
10 
11 anResol = cms.EDAnalyzer("HitResol",
12  CompressionSettings = cms.untracked.int32(compressionSettings),
13  Debug = cms.bool(False),
14  Layer = cms.int32(0), # = 0 means do all layers
15  #combinatorialTracks = cms.InputTag("ctfWithMaterialTracksP5"),
16  #combinatorialTracks = cms.InputTag("TrackRefitterP5"),
17  #combinatorialTracks = cms.InputTag("ALCARECOTkAlCosmicsCTF0T"),
18  combinatorialTracks = cms.InputTag("generalTracks"),
19  #trajectories = cms.InputTag("ctfWithMaterialTracksP5"),
20  #trajectories = cms.InputTag("TrackRefitterP5"),
21  #trajectories = cms.InputTag("CalibrationTracksRefit"),
22  trajectories = cms.InputTag("generalTracks"),
23  lumiScalers = cms.InputTag("scalersRawToDigi"),
24  addLumi = cms.untracked.bool(False),
25  # do not cut on the total number of tracks
26  cutOnTracks = cms.untracked.bool(True),
27  # compatibility
28  trackMultiplicity = cms.untracked.uint32(100),
29  MomentumCut = cms.untracked.double(3.),
30  UsePairsOnly = cms.untracked.uint32(1))
31 
32 hitresol = cms.Sequence( anResol )