]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG0/AliSelectorRL.h
o) adding log tags to all files
[u/mrichter/AliRoot.git] / PWG0 / AliSelectorRL.h
CommitLineData
dc740de4 1/* $Id$ */
2
0c7e8af2 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
10class AliRun;
11class AliRunLoader;
12
13class AliSelectorRL : public AliSelector {
14 public:
15 AliSelectorRL();
16 virtual ~AliSelectorRL();
17
18 virtual Bool_t Notify();
19 virtual void SlaveTerminate();
20
21 protected:
22 AliRun* GetAliRun();
23
24 private:
25 void DeleteRunLoader();
26 AliRunLoader* fRunLoader; //! pointer to the RunLoader if galice.root was opened
27
28 ClassDef(AliSelectorRL,0);
29};
30
31#endif