11// Package: Validation/SiTrackerPhase2V
2- // Class: Phase2OTValidateTrackingParticles
2+ // Class: Phase2OTValidateReconstruction
33
44/* *
55 * This class is part of the Phase 2 Tracker validation framework. It validates the
5454#include " SimDataFormats/Associations/interface/TTStubAssociationMap.h"
5555#include " SimDataFormats/Associations/interface/TTTrackAssociationMap.h"
5656
57- class Phase2OTValidateTrackingParticles : public DQMEDAnalyzer {
57+ class Phase2OTValidateReconstruction : public DQMEDAnalyzer {
5858public:
59- explicit Phase2OTValidateTrackingParticles (const edm::ParameterSet &);
60- ~Phase2OTValidateTrackingParticles () override ;
59+ explicit Phase2OTValidateReconstruction (const edm::ParameterSet &);
60+ ~Phase2OTValidateReconstruction () override ;
6161 void analyze (const edm::Event &, const edm::EventSetup &) override ;
6262 void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override ;
6363 static void fillDescriptions (edm::ConfigurationDescriptions &descriptions);
@@ -164,7 +164,7 @@ class Phase2OTValidateTrackingParticles : public DQMEDAnalyzer {
164164//
165165// constructors and destructor
166166//
167- Phase2OTValidateTrackingParticles::Phase2OTValidateTrackingParticles (const edm::ParameterSet &iConfig)
167+ Phase2OTValidateReconstruction::Phase2OTValidateReconstruction (const edm::ParameterSet &iConfig)
168168 : m_topoToken(esConsumes()), conf_(iConfig) {
169169 topFolderName_ = conf_.getParameter <std::string>(" TopFolderName" );
170170 trackingParticleToken_ =
@@ -188,12 +188,12 @@ Phase2OTValidateTrackingParticles::Phase2OTValidateTrackingParticles(const edm::
188188 TP_maxVtxZ = conf_.getParameter <double >(" TP_maxVtxZ" ); // max vertZ (or z0) to consider matching
189189}
190190
191- Phase2OTValidateTrackingParticles ::~Phase2OTValidateTrackingParticles () = default ;
191+ Phase2OTValidateReconstruction ::~Phase2OTValidateReconstruction () = default ;
192192
193193// member functions
194194
195195// ------------ method called for each event ------------
196- void Phase2OTValidateTrackingParticles ::analyze (const edm::Event &iEvent, const edm::EventSetup &iSetup) {
196+ void Phase2OTValidateReconstruction ::analyze (const edm::Event &iEvent, const edm::EventSetup &iSetup) {
197197 // Tracking Particles
198198 edm::Handle<std::vector<TrackingParticle>> trackingParticleHandle;
199199 iEvent.getByToken (trackingParticleToken_, trackingParticleHandle);
@@ -586,9 +586,9 @@ void Phase2OTValidateTrackingParticles::analyze(const edm::Event &iEvent, const
586586
587587// ------------ method called once each job just before starting event loop
588588// ------------
589- void Phase2OTValidateTrackingParticles ::bookHistograms (DQMStore::IBooker &iBooker,
590- edm::Run const &run,
591- edm::EventSetup const &es) {
589+ void Phase2OTValidateReconstruction ::bookHistograms (DQMStore::IBooker &iBooker,
590+ edm::Run const &run,
591+ edm::EventSetup const &es) {
592592 // Histogram setup and definitions
593593 std::string HistoName;
594594 iBooker.setCurrentFolder (topFolderName_ + " /trackParticles" );
@@ -1304,7 +1304,7 @@ void Phase2OTValidateTrackingParticles::bookHistograms(DQMStore::IBooker &iBooke
13041304
13051305#include " FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
13061306#include " FWCore/ParameterSet/interface/ParameterSetDescription.h"
1307- void Phase2OTValidateTrackingParticles ::fillDescriptions (edm::ConfigurationDescriptions &descriptions) {
1307+ void Phase2OTValidateReconstruction ::fillDescriptions (edm::ConfigurationDescriptions &descriptions) {
13081308 // OuterTrackerMonitorTrackingParticles
13091309 edm::ParameterSetDescription desc;
13101310 {
@@ -1425,9 +1425,9 @@ void Phase2OTValidateTrackingParticles::fillDescriptions(edm::ConfigurationDescr
14251425 desc.add <double >(" TP_minPt" , 1.5 );
14261426 desc.add <double >(" TP_maxEta" , 2.4 );
14271427 desc.add <double >(" TP_maxVtxZ" , 15.0 );
1428- descriptions.add (" Phase2OTValidateTrackingParticles " , desc);
1428+ descriptions.add (" Phase2OTValidateReconstruction " , desc);
14291429 // or use the following to generate the label from the module's C++ type
14301430 // descriptions.addWithDefaultLabel(desc);
14311431}
14321432
1433- DEFINE_FWK_MODULE (Phase2OTValidateTrackingParticles );
1433+ DEFINE_FWK_MODULE (Phase2OTValidateReconstruction );
0 commit comments