1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("NumberingTest")
process.load("Configuration.Geometry.GeometryReco_cff")
process.load("Geometry.CMSCommonData.cmsExtendedGeometryXML_cfi")
process.trackerGeometry.applyAlignment = cms.bool(False)
process.source = cms.Source("EmptySource")
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)
process.prod = cms.EDAnalyzer("TrackerTopologyAnalyzer");
process.p1 = cms.Path(process.prod)
|