EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndConstPar.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndConstPar.h
1 
10 #ifndef PNDCONSTPAR_H
11 #define PNDCONSTPAR_H 1
12 #include "PndMapPar.h"
13 class FairParamList;
14 
15 class PndConstPar : public PndMapPar
16 {
17 
18  public:
19 
20 
22  PndConstPar(const char* name, const char* title, const char* context);
23 
25  PndConstPar();
26 
28  ~PndConstPar();
29 
31 
32 
34  Bool_t getParams(FairParamList* list);
35 
36 
38  void SetParameters(FairField* field);
39 
40 
41  Double_t GetBx() const { return fBx; }
42  Double_t GetBy() const { return fBy; }
43  Double_t GetBz() const { return fBz; }
44 
45  protected:
46 
48  Double_t fBx, fBy, fBz;
49 
51 
52 };
53 
54 
55 #endif