CMS 3D CMS Logo

TkAlCaSkimTreeMerger_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 AlignmentTreeMerger = cms.EDAnalyzer("TkAlCaSkimTreeMerger",
4  FileList= cms.string("DQMHitMapsList.txt"),
5  TreeName= cms.string("AlignmentHitMaps"),#if you change this be sure to be consistent with the rest of your code
6  OutputFile=cms.string("AlignmentHitMapsMerged.root"),
7  NhitsMaxLimit=cms.int32(0),#this applies to ALL TK at the same time; no upper limit by default
8  NhitsMaxSet=cms.PSet(#in this way you can set different thresholds for each subdet; it is ignored if NhitsMaxLimit is higher than -1
9  PXBmaxhits=cms.int32(-1),#no upper limit by default
10  PXFmaxhits=cms.int32(-1),
11  TIBmaxhits=cms.int32(-1),
12  TIDmaxhits=cms.int32(-1),
13  TOBmaxhits=cms.int32(-1),
14  TECmaxhits=cms.int32(-1)
15  )
16  )