Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made class static a member of PFCheckHitPattern #3652

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion RecoParticleFlow/PFTracking/interface/PFCheckHitPattern.h
Expand Up @@ -77,7 +77,7 @@ class PFCheckHitPattern {
/// For a given subdetector & layer number, this stores the minimum and maximum
/// r (or z) values if it is barrel (or endcap) respectively.
typedef std::map< DetInfo, std::pair< double, double> > RZrangeMap;
static RZrangeMap rangeRorZ_;
RZrangeMap rangeRorZ_;


};
Expand Down
4 changes: 0 additions & 4 deletions RecoParticleFlow/PFTracking/src/PFCheckHitPattern.cc
Expand Up @@ -22,10 +22,6 @@
using namespace reco;
using namespace std;

// For a given subdetector & layer number, this static map stores the minimum and maximum
// r (or z) values if it is barrel (or endcap) respectively.
PFCheckHitPattern::RZrangeMap PFCheckHitPattern::rangeRorZ_;

void PFCheckHitPattern::init(edm::ESHandle<TrackerGeometry> tkerGeomHandle_) {

//
Expand Down