]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveBase/AliEveKineTools.h
Merge changes from branches/dev/EVE. This branch was following development in ROOT...
[u/mrichter/AliRoot.git] / EVE / EveBase / 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 #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 private:
22   AliEveKineTools(const AliEveKineTools&);            // Not implemented
23   AliEveKineTools& operator=(const AliEveKineTools&); // Not implemented
24
25 public:
26   AliEveKineTools(){}
27   virtual ~AliEveKineTools(){}
28
29   void SetDaughterPathMarks(TEveElement* cont, AliStack* stack, Bool_t recurse=kFALSE);
30   void SetTrackReferences  (TEveElement* cont, TTree* treeTR=0, Bool_t recurse=kFALSE);
31   void SortPathMarks       (TEveElement* cont, Bool_t recurse=kFALSE);
32
33   ClassDef(AliEveKineTools, 1); // Tools for import of kinematics.
34 };
35
36 #endif