CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/Alignment/OfflineValidation/python/TrackerGeometryCompare_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Full configuration for Tracker Geometry Comparison Tool
00004 TrackerGeometryCompare = cms.EDAnalyzer("TrackerGeometryCompare",
00005     writeToDB = cms.untracked.bool(False),
00006     outputFile = cms.untracked.string('output.root'),
00007     setCommonTrackerSystem = cms.untracked.string('NONE'), ##must be "NONE" if you don't want to use this option
00008 
00009     detIdFlag = cms.untracked.bool(False),
00010     detIdFlagFile = cms.untracked.string('blah.txt'),
00011     weightById = cms.untracked.bool(False),
00012     #   untracked vstring levels = {"PixelEndcap","PixelHalfBarrel","TID","HalfBarrel","Endcap","DetUnit"}
00013     levels = cms.untracked.vstring('Det'),
00014     weightBy = cms.untracked.string('DetUnit'),
00015     weightByIdFile = cms.untracked.string('blah2.txt'),
00016     treeName = cms.untracked.string('alignTree'),
00017     inputROOTFile1 = cms.untracked.string('IDEAL'),
00018     inputROOTFile2 = cms.untracked.string('idealtracker2.root')
00019 )
00020 
00021