]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/ITS/AliL3ITStrack.h
Using TGeo to retrieve the mean material budget between two points (M.Ivanov)
[u/mrichter/AliRoot.git] / HLT / ITS / AliL3ITStrack.h
CommitLineData
9582ea1a 1#ifndef ALIL3ITSTRACK_H
2#define ALIL3ITSTRACK_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//-------------------------------------------------------------------------
7// High Level Trigger ITS Track Class
8//
9// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
10//-------------------------------------------------------------------------
11
12
13/*****************************************************************************
14 * October 11, 2004 *
15 * The class inherits all the properties of the off-line AliITStrackV2 class *
16 * and in addition it contains an interface to the HLT ESD track *
17 *****************************************************************************/
18
19#include <AliITStrackV2.h>
20
9582ea1a 21class AliL3ITStrack : public AliITStrackV2 {
22public:
23 AliL3ITStrack();
f644512a 24 AliL3ITStrack(AliESDtrack& t);
9582ea1a 25 AliL3ITStrack(const AliL3ITStrack& t);
26
27 Int_t Compare(const TObject *o) const;
28
9f91c2b5 29 Bool_t GetPxPyPzAt(Double_t x,Double_t *p) const;
9582ea1a 30
f644512a 31 ClassDef(AliL3ITStrack,2) //HLT ITS reconstructed track
9582ea1a 32};
33
34#endif