Skip to content

Commit

Permalink
use of beginJob without arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiara Genta committed Mar 18, 2009
1 parent b9df3e9 commit 9cf25e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Validation/TrackerDigis/interface/SiPixelDigiValid.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SiPixelDigiValid: public edm::EDAnalyzer {

protected:
void analyze(const edm::Event& e, const edm::EventSetup& c);
void beginJob(const edm::EventSetup& c);
void beginJob();
void endJob(void);

private:
Expand Down
2 changes: 1 addition & 1 deletion Validation/TrackerDigis/interface/SiStripDigiValid.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SiStripDigiValid: public edm::EDAnalyzer {

protected:
void analyze(const edm::Event& e, const edm::EventSetup& c);
void beginJob(const edm::EventSetup& c);
void beginJob();
void endJob(void);

private:
Expand Down
2 changes: 1 addition & 1 deletion Validation/TrackerDigis/plugins/SiPixelDigiValid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ SiPixelDigiValid::~SiPixelDigiValid(){
}


void SiPixelDigiValid::beginJob(const EventSetup& c){
void SiPixelDigiValid::beginJob(){

}

Expand Down
2 changes: 1 addition & 1 deletion Validation/TrackerDigis/plugins/SiStripDigiValid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ SiStripDigiValid::~SiStripDigiValid(){
}


void SiStripDigiValid::beginJob(const EventSetup& c){
void SiStripDigiValid::beginJob(){

}

Expand Down

0 comments on commit 9cf25e9

Please sign in to comment.