Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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