Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:46:41

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 trackerGeometryCompare = cms.EDAnalyzer('TrackerGeometryCompare',
0004   levels = cms.untracked.vstring(),
0005   fromDD4hep = cms.untracked.bool(False),
0006   writeToDB = cms.untracked.bool(False),
0007   moduleList = cms.untracked.string('moduleList.txt'),
0008   inputROOTFile1 = cms.untracked.string('IDEAL'),
0009   inputROOTFile2 = cms.untracked.string('idealtracker2.root'),
0010   treeNameAlign = cms.untracked.string('alignTree'),
0011   treeNameDeform = cms.untracked.string('alignTreeDeformations'),
0012   outputFile = cms.untracked.string('output.root'),
0013   surfDir = cms.untracked.string('.'),
0014   weightBy = cms.untracked.string('DetUnit'),
0015   setCommonTrackerSystem = cms.untracked.string('NONE'),
0016   detIdFlag = cms.untracked.bool(False),
0017   detIdFlagFile = cms.untracked.string('blah.txt'),
0018   weightById = cms.untracked.bool(False),
0019   weightByIdFile = cms.untracked.string('blah2.txt'),
0020   mightGet = cms.optional.untracked.vstring
0021 )