File indexing completed on 2023-03-17 10:43:57
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('CALIB')
0004 process.load('CalibTracker.Configuration.setupCalibrationTree_cff')
0005 process.load('Configuration.Geometry.GeometryRecoDB_cff')
0006 process.load('Configuration/StandardSequences/MagneticField_cff')
0007 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0008
0009 from Configuration.AlCa.GlobalTag import GlobalTag
0010 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '')
0011
0012 process.CalibrationTracks.src = 'ALCARECOSiStripCalMinBias'
0013 process.shallowTracks.Tracks = 'ALCARECOSiStripCalMinBias'
0014
0015 process.load('FWCore.MessageService.MessageLogger_cfi')
0016 process.load('Configuration.StandardSequences.Services_cff')
0017 process.add_( cms.Service( "TFileService",
0018 fileName = cms.string( 'calibTreeTest.root' ),
0019 closeFileFast = cms.untracked.bool(True) ) )
0020
0021
0022
0023
0024
0025
0026
0027
0028 process.TkCalPath_SB = cms.Path( process.TkCalSeq_StdBunch )
0029 process.TkCalPath_SB0T = cms.Path( process.TkCalSeq_StdBunch0T )
0030 process.TkCalPath_IM = cms.Path( process.TkCalSeq_IsoMuon )
0031 process.TkCalPath_IM0T = cms.Path( process.TkCalSeq_IsoMuon0T )
0032 process.TkCalPath_AB = cms.Path( process.TkCalSeq_AagBunch )
0033 process.TkCalPath_AB0T = cms.Path( process.TkCalSeq_AagBunch0T )
0034
0035
0036
0037
0038 process.schedule = cms.Schedule( process.TkCalPath_AB, process.TkCalPath_AB0T,
0039 process.TkCalPath_SB, process.TkCalPath_SB0T,
0040 process.TkCalPath_IM, process.TkCalPath_IM0T )
0041
0042
0043
0044 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(100) )
0045 process.source = cms.Source (
0046 "PoolSource",
0047 fileNames=cms.untracked.vstring(
0048 '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60007/869EE593-1FAB-E511-AF99-0025905A60B4.root',
0049 ),
0050 secondaryFileNames = cms.untracked.vstring())
0051