Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 133301
b: "refs/heads/hcalrh_pf_mods_in_CMSSW_6_2_0_SLHC6"
c: b4fb031
h: "refs/heads/CMSSW_7_0_X"
i:
  133299: a1c34d5
  • Loading branch information
Dr15Jones committed May 27, 2013
1 parent 4bc9f51 commit 3361022
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
refs/heads/gh-pages: 517fc50ef888eab98e534466557d7fe8de342307
"refs/heads/CMSSW_7_0_X": 74f7c9a4cf24913e2a9f4e6805bb2e8e25ab7d52
"refs/heads/hcalrh_pf_mods_in_CMSSW_6_2_0_SLHC6": f78cdfd7d00a6266cecf0298c919c43062743793
"refs/heads/hcalrh_pf_mods_in_CMSSW_6_2_0_SLHC6": b4fb031862c462d89d3c33c3f544cce539cd83c7
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ GEMCSCPadDigiProducer::~GEMCSCPadDigiProducer()
{}


void GEMCSCPadDigiProducer::beginRun( edm::Run& r, const edm::EventSetup& eventSetup)
void GEMCSCPadDigiProducer::beginRun( const edm::Run& r, const edm::EventSetup& eventSetup)
{
edm::ESHandle<GEMGeometry> hGeom;
eventSetup.get<MuonGeometryRecord>().get( hGeom );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ class GEMCSCPadDigiProducer : public edm::EDProducer
explicit GEMCSCPadDigiProducer(const edm::ParameterSet& ps);
virtual ~GEMCSCPadDigiProducer();

virtual void beginRun( edm::Run&, const edm::EventSetup& );
virtual void endRun( edm::Run&, const edm::EventSetup& ) {}
virtual void beginRun( const edm::Run&, const edm::EventSetup& ) override;

/** Produces the EDM products */
virtual void produce(edm::Event& e, const edm::EventSetup& c);
virtual void produce(edm::Event& e, const edm::EventSetup& c) override;

private:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ GEMDigiProducer::~GEMDigiProducer()
}


void GEMDigiProducer::beginRun( edm::Run& r, const edm::EventSetup& eventSetup)
void GEMDigiProducer::beginRun( const edm::Run& r, const edm::EventSetup& eventSetup)
{
edm::ESHandle<GEMGeometry> hGeom;
eventSetup.get<MuonGeometryRecord>().get( hGeom );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ class GEMDigiProducer : public edm::EDProducer
explicit GEMDigiProducer(const edm::ParameterSet& ps);
virtual ~GEMDigiProducer();

virtual void beginRun( edm::Run&, const edm::EventSetup& );
virtual void endRun( edm::Run&, const edm::EventSetup& ) {}
virtual void beginRun( const edm::Run&, const edm::EventSetup& ) override;

/**Produces the EDM products,*/
virtual void produce(edm::Event& e, const edm::EventSetup& c);
virtual void produce(edm::Event& e, const edm::EventSetup& c) override;

void setGEMSetUp(std::vector<RPCStripNoises::NoiseItem>, std::vector<double>);

Expand Down

0 comments on commit 3361022

Please sign in to comment.