Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:11

0001 import FWCore.ParameterSet.Config as cms
0002 import os
0003 
0004 process = cms.Process("GeometrySummary")
0005 
0006 process.load('Configuration.Geometry.GeometryExtendedPhase2TkBE5DReco_cff')
0007 process.load('Configuration.Geometry.GeometryExtendedPhase2TkBE5D_cff')
0008 process.load('Geometry.TrackerGeometryBuilder.StackedTrackerGeometry_cfi')
0009 
0010 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0011 
0012 from Configuration.AlCa.GlobalTag import GlobalTag
0013 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgradePLS3', '')
0014 
0015 process.source = cms.Source("EmptySource")
0016 
0017 process.maxEvents = cms.untracked.PSet(
0018     input = cms.untracked.int32(1)
0019 )
0020 
0021 process.MyModule = cms.EDAnalyzer("AnalyzerPrintGeomInfo",
0022     TextOutput = cms.string('GeometrySummary_ExtendedPhase2TkBE5D.log'),
0023     DebugMode = cms.bool(False)
0024 )
0025 
0026 process.TFileService = cms.Service("TFileService",
0027     fileName = cms.string('GeometrySummary_ExtendedPhase2TkBE5D.root'),
0028 )
0029 
0030 process.p1 = cms.Path(process.MyModule)
0031 process.schedule = cms.Schedule(process.p1)
0032