CMS 3D CMS Logo

TrackerGeometryCompare_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Full configuration for Tracker Geometry Comparison Tool
4 TrackerGeometryCompare = cms.EDAnalyzer("TrackerGeometryCompare",
5  fromDD4hep = cms.untracked.bool(False),
6  writeToDB = cms.untracked.bool(False),
7  outputFile = cms.untracked.string('output.root'),
8  setCommonTrackerSystem = cms.untracked.string('NONE'),
9 
10  detIdFlag = cms.untracked.bool(False),
11  detIdFlagFile = cms.untracked.string('blah.txt'),
12  weightById = cms.untracked.bool(False),
13  # untracked vstring levels = {"PixelEndcap","PixelHalfBarrel","TID","HalfBarrel","Endcap","DetUnit"}
14  levels = cms.untracked.vstring('Det'),
15  weightBy = cms.untracked.string('DetUnit'),
16  weightByIdFile = cms.untracked.string('blah2.txt'),
17  treeNameAlign = cms.untracked.string('alignTree'),
18  treeNameDeform = cms.untracked.string('alignTreeDeformations'),
19  inputROOTFile1 = cms.untracked.string('IDEAL'),
20  inputROOTFile2 = cms.untracked.string('idealtracker2.root'),
21  moduleList = cms.untracked.string('moduleList.txt')
22 )
23 
24 
25