KaliVeda  1.12/06
Heavy-Ion Analysis Toolkit
KVFileReader.cpp
Go to the documentation of this file.
1 //Created by KVClassFactory on Tue Jul 13 11:52:58 2010
2 //Author: Eric Bonnet
3 
4 #include "KVFileReader.h"
5 
7 
8 
9 
13 {
14  // Default constructor
15  init();
16 }
17 
18 
19 
22 
24 {
25  //copy ctor
26  init();
27  obj.Copy(*this);
28 }
29 
30 
31 
32 
36 
37 void KVFileReader::Copy(TObject& obj) const
38 {
39  //Copy this to obj
40  //Redefinition of KVBase::Copy
41 
42  KVBase::Copy(obj);
43 }
44 
45 
ClassImp(KVPartitionList) void KVPartitionList
Initialisation.
Base class for KaliVeda framework.
Definition: KVBase.h:135
virtual void Copy(TObject &) const
Make a copy of this object.
Definition: KVBase.cpp:397
Handle reading text files.
Definition: KVFileReader.h:19
KVFileReader()
Default constructor.
virtual void Copy(TObject &) const