|
||||
File indexing completed on 2024-04-06 11:59:57
0001 import FWCore.ParameterSet.Config as cms 0002 0003 # Use compressiong settings of TFile 0004 # see https://root.cern.ch/root/html534/TFile.html#TFile:SetCompressionSettings 0005 # settings = 100 * algorithm + level 0006 # level is from 1 (small) to 9 (large compression) 0007 # algo: 1 (ZLIB), 2 (LMZA) 0008 # see more about compression & performance: https://root.cern.ch/root/html534/guides/users-guide/InputOutput.html#compression-and-performance 0009 compressionSettings = 201 0010 0011 anResol = cms.EDAnalyzer("HitResol", 0012 CompressionSettings = cms.untracked.int32(compressionSettings), 0013 Debug = cms.bool(False), 0014 Layer = cms.int32(0), # = 0 means do all layers 0015 #combinatorialTracks = cms.InputTag("ctfWithMaterialTracksP5"), 0016 #combinatorialTracks = cms.InputTag("TrackRefitterP5"), 0017 #combinatorialTracks = cms.InputTag("ALCARECOTkAlCosmicsCTF0T"), 0018 combinatorialTracks = cms.InputTag("generalTracks"), 0019 #trajectories = cms.InputTag("ctfWithMaterialTracksP5"), 0020 #trajectories = cms.InputTag("TrackRefitterP5"), 0021 #trajectories = cms.InputTag("CalibrationTracksRefit"), 0022 trajectories = cms.InputTag("generalTracks"), 0023 lumiScalers = cms.InputTag("scalersRawToDigi"), 0024 addLumi = cms.untracked.bool(False), 0025 # do not cut on the total number of tracks 0026 cutOnTracks = cms.untracked.bool(True), 0027 # compatibility 0028 trackMultiplicity = cms.untracked.uint32(100), 0029 MomentumCut = cms.untracked.double(3.), 0030 UsePairsOnly = cms.untracked.uint32(1)) 0031 0032 hitresol = cms.Sequence( anResol )
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |