]>
Commit | Line | Data |
---|---|---|
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 | #ifndef AliEveKineTools_H | |
11 | #define AliEveKineTools_H | |
12 | ||
13 | #include <TEveUtil.h> | |
14 | #include <TObject.h> | |
15 | ||
16 | class TTree; | |
17 | class AliStack; | |
18 | ||
19 | class AliEveKineTools | |
20 | { | |
21 | public: | |
22 | AliEveKineTools() {} | |
23 | virtual ~AliEveKineTools() {} | |
24 | ||
25 | void SetDaughterPathMarks(TEveElement* cont, AliStack* stack, Bool_t recurse=kFALSE); | |
26 | void SetTrackReferences (TEveElement* cont, TTree* treeTR=0, Bool_t recurse=kFALSE); | |
27 | void SortPathMarks (TEveElement* cont, Bool_t recurse=kFALSE); | |
28 | ||
29 | private: | |
30 | AliEveKineTools(const AliEveKineTools&); // Not implemented | |
31 | AliEveKineTools& operator=(const AliEveKineTools&); // Not implemented | |
32 | ||
33 | ClassDef(AliEveKineTools, 0); // Tools for import of kinematics. | |
34 | }; | |
35 | ||
36 | #endif |