diff --git a/SimG4CMS/HGCalTestBeam/plugins/HGCalTB23Analyzer.cc b/SimG4CMS/HGCalTestBeam/plugins/HGCalTB23Analyzer.cc index 90fdf516cc269..ee2cc1bfe8258 100644 --- a/SimG4CMS/HGCalTestBeam/plugins/HGCalTB23Analyzer.cc +++ b/SimG4CMS/HGCalTestBeam/plugins/HGCalTB23Analyzer.cc @@ -75,7 +75,6 @@ class HGCalTB23Analyzer : public edm::one::EDAnalyzer idBeams_; const edm::InputTag labelGen_; @@ -150,7 +149,6 @@ HGCalTB23Analyzer::HGCalTB23Analyzer(const edm::ParameterSet& iConfig) zFrontEE_(iConfig.getParameter("zFrontEE")), zFrontFH_(iConfig.getParameter("zFrontFH")), zFrontBH_(iConfig.getParameter("zFrontBH")), - sampleIndex_(iConfig.getParameter("sampleIndex")), gev2mip200_(iConfig.getUntrackedParameter("gev2mip200", 57.0e-6)), gev2mip300_(iConfig.getUntrackedParameter("gev2mip300", 85.5e-6)), stoc_smear_time_200_(iConfig.getUntrackedParameter("stoc_smear_time_200", 10.24)), diff --git a/SimG4CMS/HGCalTestBeam/test/HGCalTB230Jul_cfg.py b/SimG4CMS/HGCalTestBeam/test/HGCalTB230Jul_cfg.py index 89f29cda55fd8..b11eacb0bdda9 100644 --- a/SimG4CMS/HGCalTestBeam/test/HGCalTB230Jul_cfg.py +++ b/SimG4CMS/HGCalTestBeam/test/HGCalTB230Jul_cfg.py @@ -18,7 +18,7 @@ process.load('Configuration.StandardSequences.SimIdeal_cff') process.load('Configuration.StandardSequences.EndOfProcess_cff') process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') -#process.load('SimG4CMS.HGCalTestBeam.HGCalTB23Analyzer_cfi') +process.load('SimG4CMS.HGCalTestBeam.HGCalTB23Analyzer_cfi') process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) @@ -99,14 +99,14 @@ process.generation_step = cms.Path(process.pgen) process.simulation_step = cms.Path(process.psim) process.genfiltersummary_step = cms.EndPath(process.genFilterSummary) -#process.analysis_step = cms.Path(process.HGCalTBAnalyzer) +process.analysis_step = cms.Path(process.HGCalTB23Analyzer) process.endjob_step = cms.EndPath(process.endOfProcess) process.RAWSIMoutput_step = cms.EndPath(process.RAWSIMoutput) # Schedule definition process.schedule = cms.Schedule(process.generation_step, process.simulation_step, -# process.analysis_step, + process.analysis_step, process.endjob_step, process.RAWSIMoutput_step, )