Skip to content

Commit

Permalink
MAT-MINERvA requires ApplyCaloTuning be defined.
Browse files Browse the repository at this point in the history
In our case, it's trivial.

Conflicts:
	includes/CVUniverse.h
  • Loading branch information
bamesserly committed Mar 5, 2024
1 parent 7b59d76 commit ec203f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion includes/CVUniverse.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ class CVUniverse : public PlotUtils::MinervaUniverse {
return m_vtx_michels;
}

virtual double ApplyCaloTuning(const double& cal_recoil_energy) const {
return cal_recoil_energy;
}

//==============================================================================
// Analysis Variables
//==============================================================================
Expand Down Expand Up @@ -205,7 +209,7 @@ class CVUniverse : public PlotUtils::MinervaUniverse {
// p = -2.93015 +- 4.44962 // Yikes, BTW
// r = 0.132851 +- 0.0199247
// q = 3.95884 +- 0.657313
virtual double GetTpiUntracked(double michel_range) const {
virtual double GetTpiUntracked(double michel_range) const {
return -2.93 + 0.133 * michel_range + 3.96 * sqrt(michel_range);
}
ROOT::Math::XYZTVector GetVertex() const {
Expand Down

0 comments on commit ec203f9

Please sign in to comment.