StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTPCMuDst.h
1 // -*- mode: c++;-*-
2 // $Id: StjTPCMuDst.h,v 1.7 2010/05/30 07:10:06 pibero Exp $
3 #ifndef STJTPCMUDST_H
4 #define STJTPCMUDST_H
5 
6 #include "StjTPC.h"
7 
8 class StMuTrack;
9 
10 class StjTPCMuDst : public StjTPC {
11 
12 public:
13  StjTPCMuDst() {}
14  virtual ~StjTPCMuDst() {}
15 
16  int currentVertexIndex() const;
17  void setVertexIndex(int i);
18  int numberOfVertices() const;
19  StjPrimaryVertex getVertex() const;
20  StjTrackList getTrackList();
21 
22 protected:
23 
24  StjTrack createTrack(const StMuTrack* mutrack, int i, double magneticField);
25 };
26 
27 #endif // STJTPCMUDST_H
Definition: StjTPC.h:12