]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEERBase/AliVVfriendEvent.h
added pointer to flat esd friend to flat event
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliVVfriendEvent.h
CommitLineData
4a08929f 1#ifndef ALIVVFRIENDEVENT_H
2#define ALIVVFRIENDEVENT_H
3
08f45a9c 4#include "Rtypes.h"
5class AliVVfriendTrack;
6
4a08929f 7//_____________________________________________________________________________
8class AliVVfriendEvent {
9public:
08f45a9c 10 AliVVfriendEvent() {}
11 virtual ~AliVVfriendEvent() {}
4a08929f 12
3636347f 13 virtual Int_t GetNclustersTPC(UInt_t /*sector*/) const = 0;
14 virtual Int_t GetNclustersTPCused(UInt_t /*sector*/) const = 0;
4a08929f 15
16 //used in calibration
3636347f 17 virtual Bool_t TestSkipBit() const = 0;
18 virtual Int_t GetNumberOfTracks() const = 0;
19 virtual const AliVVfriendTrack *GetTrack(Int_t /*i*/) const = 0;
4a08929f 20
21private:
22 AliVVfriendEvent(const AliVVfriendEvent &);
23 AliVVfriendEvent& operator=(const AliVVfriendEvent& esd);
08f45a9c 24
f1059709 25// ClassDef(AliVVfriendEvent,0);
4a08929f 26};
27
28#endif
29
30