CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Alignment/TrackerAlignment/python/TreeMerger_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 AlignmentTreeMerger = cms.EDAnalyzer("TreeMerger",
00004                                      FileList= cms.string("DQMHitMapsList.txt"),
00005                                      TreeName= cms.string("AlignmentHitMaps"),#if you change this be sure to be consistent with the rest of your code
00006                                      OutputFile=cms.string("AlignmentHitMapsMerged.root"),
00007                                      NhitsMaxLimit=cms.int32(0),#this applies to ALL TK at the same time; no upper limit by default
00008                                      NhitsMaxSet=cms.PSet(#in this way you can set different thresholds for each subdet; it is ignored if NhitsMaxLimit is higher than -1
00009                                                    PXBmaxhits=cms.int32(-1),#no upper limit by default 
00010                                                    PXFmaxhits=cms.int32(-1),
00011                                                    TIBmaxhits=cms.int32(-1),
00012                                                    TIDmaxhits=cms.int32(-1),
00013                                                    TOBmaxhits=cms.int32(-1),
00014                                                    TECmaxhits=cms.int32(-1)
00015                                                    )
00016                                      )