]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTLoader.cxx
Separate labels for TPC, ITS, and TRD tracks (M.Ivanov)
[u/mrichter/AliRoot.git] / START / AliSTARTLoader.cxx
1 //////////////////////////////////////////////////////////////////////////////
2 //                                                                          //
3 // Loader for START digits and RecPoints inherit from AliBaseDataLoader     //
4 // STARTDigits is TObject  consists time flight signal from each PMTtube,   //
5 // mean time right and left array (start signal) and time differnce         //
6 // (vertex z position)                                                      // 
7 // START RecPoints is TObject with mean time (start signal)                 // 
8 // and evrtex position  (cm)                                                //
9 /////////////////////////////////////////////////////////////////////////////
10 #include "AliSTARTLoader.h"
11 #include <AliRunLoader.h>
12 #include "AliDataLoader.h"
13
14 #include <TTree.h>
15 #include <TFile.h>
16
17 #include <stdlib.h>
18 #include <Riostream.h>
19 #include <Riostream.h>
20
21
22 ClassImp(AliSTARTLoader)
23
24 /*****************************************************************************/ 
25 AliSTARTLoader::AliSTARTLoader(const Char_t *name,const Char_t *topfoldername):
26   AliLoader(name,topfoldername)
27
28 {
29 //ctor   
30   cout<<" AliSTARTLoader "<<endl;
31
32
33    
34 }
35 /*****************************************************************************/ 
36
37 AliSTARTLoader::AliSTARTLoader(const Char_t *name,TFolder *topfolder):
38  AliLoader(name,topfolder)
39 {
40 //ctor   
41
42   cout<<"  My AliSTARTLoader!!!!! "<<endl;
43
44    
45 }
46 /*****************************************************************************/ 
47 AliSTARTLoader::~AliSTARTLoader()
48 {
49  //destructor
50   UnloadDigits();
51   fDataLoaders->Remove(&fDigitsDataLoader);
52
53   UnloadRecPoints();
54   fDataLoaders->Remove(&fVertexDataLoader);
55
56  
57 }
58