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 from Alignment.OfflineValidation.trackerGeometryCompare_cfi import trackerGeometryCompare as _trackerGeometryCompare
5 TrackerGeometryCompare = _trackerGeometryCompare.clone(
6  fromDD4hep = False,
7  writeToDB = False,
8  outputFile = 'output.root',
9  setCommonTrackerSystem = 'NONE',
10  detIdFlag = False,
11  detIdFlagFile = 'blah.txt',
12  weightById = False,
13  # untracked vstring levels = {"PixelEndcap","PixelHalfBarrel","TID","HalfBarrel","Endcap","DetUnit"}
14  levels = ['Det'],
15  weightBy = 'DetUnit',
16  weightByIdFile = 'blah2.txt',
17  treeNameAlign = 'alignTree',
18  treeNameDeform = 'alignTreeDeformations',
19  inputROOTFile1 = 'IDEAL',
20  inputROOTFile2 = 'idealtracker2.root',
21  moduleList = 'moduleList.txt',
22  surfDir = '.'
23 )
24 
25 
26