KaliVeda  1.12/06
Heavy-Ion Analysis Toolkit
KVChargeRadius.cpp
Go to the documentation of this file.
1 //Created by KVClassFactory on Wed Jan 30 12:13:12 2013
2 //Author: bonnet
3 
4 #include "KVChargeRadius.h"
5 
7 
8 
9 
13 {
14  // Default constructor
15  init();
16  fUnits = "fm";
17 }
18 
19 
20 
23 
25 {
26  // Write your code here
27  init();
28 }
29 
30 
31 
34 
36 {
37  // Copy constructor
38  o.Copy(*this);
39 }
40 
41 
42 
44 
45 void KVChargeRadius::Copy(TObject& object) const
46 {
47  KVNuclData::Copy(object);
48  KVChargeRadius& cr = (KVChargeRadius&)object;
49  cr.fError = fError;
50 }
51 
52 
53 
56 
58 {
59  // Destructor
60 }
61 
62 
63 
65 
67 {
68 
69  SetError(0);
70 
71 
72 }
73 
74 
ClassImp(KVPartitionList) void KVPartitionList
Initialisation.
char Char_t
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)
Simple abstract class to store value related to nuclear data.
Definition: KVNuclData.h:17
void Copy(TObject &object) const
Copy this to object.
Definition: KVNuclData.cpp:59