Skip to content
Snippets Groups Projects
Commit ab80200e authored by scott snyder's avatar scott snyder
Browse files

AFP_GlobReco: Fix clang warnings.

Missing override keywords.
parent f034abcf
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!49645AFP_GlobReco: Fix clang warnings.
...@@ -47,18 +47,21 @@ class AFP_ProtonRecoAnalytical : public AFP_ProtonRecoBase { ...@@ -47,18 +47,21 @@ class AFP_ProtonRecoAnalytical : public AFP_ProtonRecoBase {
/// @brief Reconstructs single proton from pair of tracks /// @brief Reconstructs single proton from pair of tracks
/// ///
/// * Sets up measurement and calculates slopes and postitions /// * Sets up measurement and calculates slopes and postitions
/// * Reconstucts energy of proton with bisection method /// * Reconstructs energy of proton with bisection method
/// * Calculates initial proton slopes /// * Calculates initial proton slopes
/// * Adds proton to outputContainer and sets it's properties /// * Adds proton to outputContainer and sets its properties
/// ///
/// @return Poiner to reconstucted AFPProton /// @return Pointer to reconstructed AFPProton
xAOD::AFPProton * reco(const xAOD::AFPTrack* trkNear, const xAOD::AFPTrack* trkFar, std::unique_ptr<xAOD::AFPProtonContainer>& outputContainer) const; virtual
xAOD::AFPProton * reco(const xAOD::AFPTrack* trkNear, const xAOD::AFPTrack* trkFar, std::unique_ptr<xAOD::AFPProtonContainer>& outputContainer) const override;
/// Reconstructs single proton using only one track from far staton /// Reconstructs single proton using only one track from far station
xAOD::AFPProton * reco (const xAOD::AFPTrack* trkFar, std::unique_ptr<xAOD::AFPProtonContainer>& outputContainer) const; virtual
xAOD::AFPProton * reco (const xAOD::AFPTrack* trkFar, std::unique_ptr<xAOD::AFPProtonContainer>& outputContainer) const override;
/// Calculates chi2 for reconstructed proton /// Calculates chi2 for reconstructed proton
double chi2(double energy, double sx, double sy, const Measurement& my_measAFP) const; virtual
double chi2(double energy, double sx, double sy, const Measurement& my_measAFP) const override;
/// Calculates root of given function /// Calculates root of given function
double bisection(double (AFP_ProtonRecoAnalytical::*fun)(double,const Measurement&,std::vector<double>&, std::vector<double>&) const, const Measurement& my_measAFP, std::vector<double>& my_slopeCalculated, std::vector<double>& my_positionCalculated) const; double bisection(double (AFP_ProtonRecoAnalytical::*fun)(double,const Measurement&,std::vector<double>&, std::vector<double>&) const, const Measurement& my_measAFP, std::vector<double>& my_slopeCalculated, std::vector<double>& my_positionCalculated) const;
......
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