Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:27:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("egammaAnalysis")
0004 process.load("DQMServices.Core.DQM_cfg")
0005 
0006 # End of process
0007 process.load("Configuration.StandardSequences.EndOfProcess_cff")
0008 
0009 process.load("Configuration.StandardSequences.GeometryIdeal_cff")
0010 #process.load("Geometry.CaloEventSetup.CaloTopology_cfi")
0011 process.load("Validation.EcalClusters.egammaBCAnalyzer_cfi")
0012 process.load("Validation.EcalClusters.egammaSCAnalyzer_cfi")
0013 
0014 process.source = cms.Source("PoolSource",
0015     fileNames = cms.untracked.vstring( 'file:testfile.root' )
0016 )
0017 
0018 process.USER = cms.OutputModule("PoolOutputModule",
0019     outputCommands = cms.untracked.vstring('keep *', 
0020         'drop *_simEcalUnsuppressedDigis_*_*', 
0021         'drop *_simEcalDigis_*_*', 
0022         'drop *_simEcalPreshowerDigis_*_*', 
0023         'drop *_ecalRecHit_*_*', 
0024         'drop *_ecalPreshowerRecHit_*_*'),
0025     fileName = cms.untracked.string('TestValidation.root')
0026 )
0027 
0028 process.maxEvents = cms.untracked.PSet(
0029     input = cms.untracked.int32(1000)
0030 )
0031 
0032 process.p = cms.Path(process.egammaBasicClusterAnalyzer+process.egammaSuperClusterAnalyzer+process.endOfProcess+process.USER)
0033 process.DQM.collectorHost = ''
0034