PandaRoot
RhoBeamConstraint.h
Go to the documentation of this file.
1 #ifndef RHOBEAMCONSTRAINT_H
2 #define RHOBEAMCONSTRAINT_H
3 // //
5 // RhoBeamConstraint //
6 // //
7 // Definition of a beam constraint for particle fitters //
8 // //
9 // Author List: //
10 // Ralf Kliemt, HIM/GSI Feb.2013 //
11 // //
13 
14 #include "RhoConstraint.h"
15 #include "RhoLorentzVectorErr.h"
16 
18  public:
21 
22  void SetBeamConstraint(const RhoLorentzVectorErr &beam) { fBeamConstraint = beam; };
23  RhoLorentzVectorErr GetBeamConstraint() const { return fBeamConstraint; };
24 
25  private:
26  RhoLorentzVectorErr fBeamConstraint; // fourmomentum in the LAB [GeV/c]
27 
28  ClassDef(RhoBeamConstraint, 1);
29 };
30 
31 #endif // RHOBEAMCONSTRAINT_H
RhoLorentzVectorErr GetBeamConstraint() const
void SetBeamConstraint(const RhoLorentzVectorErr &beam)
RhoBeamConstraint(const RhoLorentzVectorErr &beam)