PandaRoot
PndConstPar.h
Go to the documentation of this file.
1 
9 #ifndef PNDCONSTPAR_H
10 #define PNDCONSTPAR_H 1
11 #include "PndMapPar.h"
12 class FairParamList;
13 
14 class PndConstPar : public PndMapPar {
15 
16  public:
18  PndConstPar(const char *name, const char *title, const char *context);
19 
21  PndConstPar();
22 
24  ~PndConstPar();
25 
26  void putParams(FairParamList *list);
27 
29  Bool_t getParams(FairParamList *list);
30 
32  void SetParameters(FairField *field);
33 
34  Double_t GetBx() const { return fBx; }
35  Double_t GetBy() const { return fBy; }
36  Double_t GetBz() const { return fBz; }
37 
38  protected:
40  Double_t fBx, fBy, fBz;
41 
43 };
44 
45 #endif
Double_t fBy
Definition: PndConstPar.h:40
Bool_t getParams(FairParamList *list)
Double_t fBx
Definition: PndConstPar.h:40
ClassDef(PndConstPar, 1)
Double_t GetBy() const
Definition: PndConstPar.h:35
Double_t GetBx() const
Definition: PndConstPar.h:34
void putParams(FairParamList *list)
void SetParameters(FairField *field)
Double_t fBz
Definition: PndConstPar.h:40
Double_t GetBz() const
Definition: PndConstPar.h:36