KaliVeda  1.12/06
Heavy-Ion Analysis Toolkit
KVChargeRadius.h
Go to the documentation of this file.
1 
4 #ifndef __KVCHARGERADIUS_H
5 #define __KVCHARGERADIUS_H
6 
7 #include "KVNuclData.h"
8 
15 class KVChargeRadius : public KVNuclData {
16  void init();
17 
18 protected:
20 
21 public:
23  KVChargeRadius(const Char_t* name);
25  ROOT_COPY_ASSIGN_OP(KVChargeRadius)
26  void Copy(TObject& object) const;
27  virtual ~KVChargeRadius();
28 
29  void SetError(Double_t err)
30  {
31  fError = err;
32  }
34  {
35  return fError;
36  }
37 
39 };
40 
41 #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:17