]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveDet/AliEveKineTools.h
Temporary fix to avoid xrootd thrashing
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveKineTools.h
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 // Tools for import of kinematics.
11 // Preliminary/minimal solution.
12
13 #ifndef ALIEVE_KineTools_H
14 #define ALIEVE_KineTools_H
15
16 #include <TEveUtil.h>
17 #include <TObject.h>
18
19 class TTree;
20 class AliStack;
21
22 class TEveTrackList;
23
24
25 class AliEveKineTools
26 {
27 private:
28   AliEveKineTools(const AliEveKineTools&);            // Not implemented
29   AliEveKineTools& operator=(const AliEveKineTools&); // Not implemented
30
31 protected:
32   // data from TreeK
33 public:
34   AliEveKineTools();
35   virtual ~AliEveKineTools(){}
36
37   // data from TreeTR
38   void SetDaughterPathMarks(TEveElement* cont, AliStack* stack, Bool_t recurse=kFALSE);
39   void SetTrackReferences  (TEveElement* cont, TTree* treeTR=0, Bool_t recurse=kFALSE);
40   void SortPathMarks       (TEveElement* cont, Bool_t recurse=kFALSE);
41
42   ClassDef(AliEveKineTools, 1);
43 }; // endclass AliEveKineTools
44
45 #endif