Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:25:59

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("ICALIB")
0004 process.load("Configuration.StandardSequences.Services_cff")
0005 process.load('Configuration.Geometry.GeometryExtended2026D92Reco_cff')
0006 
0007 process.trackerGeometry.applyAlignment = cms.bool(False)
0008 
0009 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0010 from Configuration.AlCa.GlobalTag import GlobalTag
0011 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:phase2_realistic_T21', '')
0012 
0013 process.source = cms.Source("EmptyIOVSource",
0014     firstValue = cms.uint64(1),
0015     lastValue = cms.uint64(1),
0016     timetype = cms.string('runnumber'),
0017     interval = cms.uint64(1)
0018 )
0019 
0020 process.load("FWCore/MessageService/MessageLogger_cfi")
0021 process.MessageLogger.cerr.enable = False
0022 process.MessageLogger.files.logfile = cms.untracked.PSet(threshold = cms.untracked.string('INFO'))
0023 
0024 process.Timing = cms.Service("Timing")
0025 
0026 process.prodstrip = cms.EDAnalyzer("SiStripDetInfoFileWriter",
0027     FilePath = cms.untracked.string('SiStripDetInfo_phase2.dat'),
0028 )
0029 
0030 process.prodpixel = cms.EDAnalyzer("SiPixelDetInfoFileWriter",
0031     FilePath = cms.untracked.string('PixelSkimmedGeometry_GeometryExtended2026Tilted_D49.txt'),
0032     WriteROCInfo = cms.untracked.bool(True)
0033 )
0034 
0035 process.asciiPrint = cms.OutputModule("AsciiOutputModule")
0036 
0037 process.p1 = cms.Path(process.prodstrip)
0038 process.p2 = cms.Path(process.prodpixel)
0039 process.ep = cms.EndPath(process.asciiPrint)
0040 
0041