]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/AliSelectorRL.h
function to return the RunLoader instead of AliRun
[u/mrichter/AliRoot.git] / PWG0 / AliSelectorRL.h
1 /* $Id$ */
2
3 #ifndef ALISELECTORRL_H
4 #define ALISELECTORRL_H
5
6 // Use this selector, if you have AliROOT installed (at the moment only ESD, STEER + deps)
7
8 #include "AliSelector.h"
9
10 class AliRunLoader;
11
12 class AliSelectorRL : public AliSelector {
13   public:
14     AliSelectorRL();
15     virtual ~AliSelectorRL();
16
17     virtual Bool_t  Notify();
18     virtual void    SlaveTerminate();
19
20  protected:
21     AliRunLoader* GetAliRunLoader();
22
23  private:
24     void DeleteRunLoader();
25     AliRunLoader* fRunLoader;    //! pointer to the RunLoader if galice.root was opened
26
27     ClassDef(AliSelectorRL,0);
28 };
29
30 #endif