PandaRoot
RhoMassConstraint.h
Go to the documentation of this file.
1 #ifndef RHOMASSCONSTRAINT_H
2 #define RHOMASSCONSTRAINT_H
3 // //
5 // RhoMassConstraint //
6 // //
7 // Definition of a mass constraint for particle fitters //
8 // //
9 // Author List: //
10 // Ralf Kliemt, HIM/GSI Feb.2013 //
11 // //
13 
14 #include "RhoConstraint.h"
15 
17  public:
18  RhoMassConstraint(const Double_t &mass = 0.);
20 
21  void SetMassConstraint(const Double_t &mass = 0.) { fMassConstraint = mass; };
22  Double_t GetMassConstraint() const { return fMassConstraint; };
23 
24  private:
25  Double_t fMassConstraint; //[GeV/c^2]
26 
27  ClassDef(RhoMassConstraint, 1);
28 };
29 
30 #endif // RHOMASSCONSTRAINT_H
RhoMassConstraint(const Double_t &mass=0.)
void SetMassConstraint(const Double_t &mass=0.)
Double_t GetMassConstraint() const