KaliVeda
Toolkit for HIC analysis
KVChargeRadius.h
1 
4 #ifndef __KVCHARGERADIUS_H
5 #define __KVCHARGERADIUS_H
6 
7 #include "KVNuclData.h"
8 
16 class KVChargeRadius : public KVNuclData {
17  void init();
18 
19 protected:
21 
22 public:
24  KVChargeRadius(const Char_t* name);
26  ROOT_COPY_ASSIGN_OP(KVChargeRadius)
27  void Copy(TObject& object) const;
28  virtual ~KVChargeRadius();
29 
30  void SetError(Double_t err)
31  {
32  fError = err;
33  }
35  {
36  return fError;
37  }
38 
40 };
41 
42 #endif
char Char_t
double Double_t
#define ClassDef(name, id)
Simple class for storing charge radius information of nuclei.
virtual ~KVChargeRadius()
Destructor.
void Copy(TObject &object) const
KVChargeRadius()
Default constructor.
void SetError(Double_t err)
Double_t GetError() const
Simple abstract class to store value related to nuclear data.
Definition: KVNuclData.h:18