Skip to content
Snippets Groups Projects
Commit e7562f1b authored by Chris Malena Delitzsch's avatar Chris Malena Delitzsch
Browse files

Fix warnings

parent 49695f5a
1 merge request!42073Adding weight for jet/MET validation histograms
......@@ -37,7 +37,7 @@ class JetHistoBase : public HistoGroupBase {
virtual int fillHistosFromContainer(const xAOD::JetContainer & cont, float weight);
virtual int fillHistosFromJet(const xAOD::Jet &j, float weight);
virtual int fillHistosFromJet(const xAOD::Jet &j, float /*weight*/);
virtual int finalizeHistos();
......
......@@ -12,7 +12,7 @@ namespace jet {
class HistoFiller {
public:
virtual ~HistoFiller() {}
virtual void fill(const xAOD::Jet &, float weight ){};
virtual void fill(const xAOD::Jet &, float /*weight*/ ){};
// allows to avoid invalid attribute
virtual bool isValid(const xAOD::Jet &){return false;}
};
......
......@@ -27,7 +27,7 @@ int JetHistoBase::fillHistosFromContainer(const xAOD::JetContainer & cont, float
return count;
}
int JetHistoBase::fillHistosFromJet(const xAOD::Jet &, float weight) { return 0;}
int JetHistoBase::fillHistosFromJet(const xAOD::Jet &, float /*weight*/) { return 0;}
int JetHistoBase::finalizeHistos() {return 0;}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment