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

Introduce verbose flag to disable debug statement leading to large log files. #80

Merged
merged 4 commits into from
Aug 5, 2019
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions HGCalAnalysis/plugins/HGCalAnalysis.cc
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ class HGCalAnalysis : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one:
std::string detector_;
std::string inputTag_HGCalMultiCluster_;
bool rawRecHits_;
bool verbose_;

// ----------member data ---------------------------

Expand Down Expand Up @@ -482,6 +483,7 @@ HGCalAnalysis::HGCalAnalysis(const edm::ParameterSet &iConfig)
detector_(iConfig.getParameter<std::string>("detector")),
inputTag_HGCalMultiCluster_(iConfig.getParameter<std::string>("inputTag_HGCalMultiCluster")),
rawRecHits_(iConfig.getParameter<bool>("rawRecHits")),
verbose_(iConfig.getParameter<bool>("verbose")),
particleFilter_(iConfig.getParameter<edm::ParameterSet>("TestParticleFilter")) {
// now do what ever initialization is needed
mySimEvent_ = new FSimEvent(particleFilter_);
Expand Down Expand Up @@ -1765,8 +1767,10 @@ int HGCalAnalysis::fillLayerCluster(const edm::Ptr<reco::CaloCluster> &layerClus
fillRecHit(rh_detid, fraction, layer, cluster_index_);
} else {
// need to see what to do about existing rechits in case of sharing
std::cout << "RecHit already filled for different layer cluster: " << int(rh_detid)
<< std::endl;
if (verbose_) {
std::cout << "RecHit already filled for different layer cluster: " << int(rh_detid)
<< std::endl;
}
}
}
}
Expand Down