]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliObjectLoader.h
new AliSplineFit class. Performs recursive fits to data point arrays
[u/mrichter/AliRoot.git] / STEER / AliObjectLoader.h
CommitLineData
a9bbb414 1#ifndef ALIOBJECTLOADER_H
2#define ALIOBJECTLOADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////
9// //
10// class AliObjectLoader //
11// //
12// //
13////////////////////////////////////////////
14
15#include "AliBaseLoader.h"
16
17class AliObjectLoader: public AliBaseLoader
18 {
19 public:
20 AliObjectLoader(){};
21 AliObjectLoader(const TString& name, AliDataLoader* dl, Bool_t storeontop = kFALSE);
22 AliObjectLoader(const AliObjectLoader& source);
23 AliObjectLoader& operator=(const AliObjectLoader& source);
24 virtual ~AliObjectLoader(){};
25 TObject* Get() const;
26
27 protected:
28 TFolder* GetFolder() const;
29 Int_t AddToBoard(TObject* obj);
30 void RemoveFromBoard(TObject* obj);
31
32 ClassDef(AliObjectLoader,1)
33
34};
35#endif
36
37