Skip to content

Commit 383c0b7

Browse files
authored
Update TrackVertexAnalyzer.cc
1 parent d5857b6 commit 383c0b7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/TrackVertexAnalyzer.cc

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// -*- C++ -*-
22
//
3-
// Package: TrackVertex
4-
// Class: TrackVertex
3+
// Package: TrackVertex_2010
4+
// Class: TrackVertex_2010
55
//
6-
/**\class TrackVertex TrackVertexAnalyzer.cc Validation/TrackVertex/src/TrackVertexAnalyzer.cc
6+
/**\class TrackVertex_2010 TrackVertexAnalyzer.cc Validation/TrackVertex_2010/src/TrackVertexAnalyzer.cc
77
88
Description: [one line class summary]
99
@@ -69,10 +69,10 @@
6969
// class declaration
7070
//
7171

72-
class TrackVertex: public edm::EDAnalyzer {
72+
class TrackVertex_2010: public edm::EDAnalyzer {
7373
public:
74-
explicit TrackVertex(const edm::ParameterSet&);
75-
~TrackVertex();
74+
explicit TrackVertex_2010(const edm::ParameterSet&);
75+
~TrackVertex_2010();
7676

7777
// declare variables
7878
double deltaz;
@@ -198,7 +198,7 @@ class TrackVertex: public edm::EDAnalyzer {
198198
// constructors and destructor
199199
//
200200

201-
TrackVertex::TrackVertex(const edm::ParameterSet& iConfig) {
201+
TrackVertex_2010::TrackVertex_2010(const edm::ParameterSet& iConfig) {
202202

203203
// *****************************************************************
204204
// This is the main analysis routine
@@ -375,7 +375,7 @@ TrackVertex::TrackVertex(const edm::ParameterSet& iConfig) {
375375
}
376376

377377

378-
TrackVertex::~TrackVertex() {
378+
TrackVertex_2010::~TrackVertex2010() {
379379
// do anything here that needs to be done at destruction time
380380
// (e.g. close files, deallocate resources etc.)
381381
}
@@ -387,7 +387,7 @@ TrackVertex::~TrackVertex() {
387387
//
388388

389389
// ------------ method called for each event ------------
390-
void TrackVertex::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
390+
void TrackVertex_2010::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
391391

392392
// **********************************************
393393
// here each relevant event will get analyzed
@@ -632,7 +632,7 @@ void TrackVertex::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetu
632632

633633

634634
// ---- method called for each event to check good quality lumi section ---- //
635-
bool TrackVertex::providesGoodLumisection(const edm::Event& iEvent) {
635+
bool TrackVertex_2010::providesGoodLumisection(const edm::Event& iEvent) {
636636

637637
// check JSON "by hand"
638638
// This is a 'primitive' check which has the advantage that it also works
@@ -950,14 +950,14 @@ bool TrackVertex::providesGoodLumisection(const edm::Event& iEvent) {
950950

951951

952952
// ------------ method called once each job just before starting event loop ------------
953-
void TrackVertex::beginJob() {
953+
void TrackVertex_2010::beginJob() {
954954

955955
}
956956

957957
// ------------ method called once each job just after ending the event loop ------------
958-
void TrackVertex::endJob() {
958+
void TrackVertex_2010::endJob() {
959959
}
960960

961961
//define this as a plug-in
962-
DEFINE_FWK_MODULE(TrackVertex);
962+
DEFINE_FWK_MODULE(TrackVertex_2010);
963963

0 commit comments

Comments
 (0)