Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("ContainmentCorrectionAnalysis")
0004 process.load("Configuration.StandardSequences.GeometryExtended_cff")
0005 
0006 process.maxEvents = cms.untracked.PSet(
0007     input = cms.untracked.int32(-1)
0008 )
0009 process.source = cms.Source("PoolSource",
0010     fileNames = cms.untracked.vstring('file:245E3E90-0741-DD11-BB73-000423D99660.root')
0011 )
0012 
0013 process.TFileService = cms.Service("TFileService",
0014     fileName = cms.string('contCorrAnalyzer.root')
0015 )
0016 
0017 process.contCorrAnalyzer = cms.EDAnalyzer("ContainmentCorrectionAnalyzer",
0018     BarrelSuperClusterCollection = cms.InputTag("correctedHybridSuperClusters"),
0019     reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
0020     simVertexCollection = cms.InputTag("g4SimHits"),
0021     simTrackCollection = cms.InputTag("g4SimHits"),
0022     EndcapSuperClusterCollection = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
0023     reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB")
0024 )
0025 
0026 process.p = cms.Path(process.contCorrAnalyzer)
0027