]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG0/AliSelectorRL.h
coding conventions (Alberto)
[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
0c7e8af2 10class AliRunLoader;
11
12class AliSelectorRL : public AliSelector {
13 public:
14 AliSelectorRL();
15 virtual ~AliSelectorRL();
16
17 virtual Bool_t Notify();
18 virtual void SlaveTerminate();
19
20 protected:
dfe1bf7e 21 AliRunLoader* GetAliRunLoader();
0c7e8af2 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