]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Alieve/AliEveKineTools.h
Comment code, hide public data-members.
[u/mrichter/AliRoot.git] / EVE / Alieve / AliEveKineTools.h
CommitLineData
d810d0de 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
19class TTree;
20class AliStack;
21
22class TEveTrackList;
23
24
25class AliEveKineTools
26{
27private:
28 AliEveKineTools(const AliEveKineTools&); // Not implemented
29 AliEveKineTools& operator=(const AliEveKineTools&); // Not implemented
30
31protected:
32 // data from TreeK
33public:
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