]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTLoader.h
Replaced by JETANLinkDef.h
[u/mrichter/AliRoot.git] / START / AliSTARTLoader.h
1 #ifndef ALISTARTLOADER_H
2 #define ALISTARTLOADER_H
3
4 #include "AliLoader.h"
5 #include "AliObjectLoader.h"
6
7 class AliSTARTdigit;
8
9
10 class AliSTARTLoader: public AliLoader {
11  public:
12    AliSTARTLoader() : AliLoader() {};
13    AliSTARTLoader(const Char_t *detname,const Char_t *eventfoldername) : 
14      AliLoader(detname, eventfoldername) {InitObjectLoaders();};
15    AliSTARTLoader(const Char_t *detname,TFolder* eventfolder) :
16      AliLoader(detname, eventfolder) {InitObjectLoaders();};
17
18    // Digits
19    AliSTARTdigit*  Digits(){ return (AliSTARTdigit*) GetDigitsDataLoader()->GetBaseDataLoader()->Get();} // returns a pointer to the tree of  RawClusters
20
21  private:
22    void InitObjectLoaders();
23
24    ClassDef(AliSTARTLoader,1)
25 };
26  
27 #endif
28
29
30