StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StTpcLocalSectorDirection.hh
1 /*********************************************************************
2  *
3  * $Id: StTpcLocalSectorDirection.hh,v 1.2 2004/06/05 23:31:10 fisyak Exp $
4  *
5  * Author: brian May 20, 1998
6  *
7  **********************************************************************/
8 #ifndef ST_TPC_LOCAL_SECTOR_DIRECTION_HH
9 #define ST_TPC_LOCAL_SECTOR_DIRECTION_HH
10 #include "StTpcCoordinate.h"
12 public:
14  StTpcLocalSectorDirection(double x, double y, double z) :
15  StTpcCoordinate(x,y,z,0,0) {}
17  StTpcCoordinate(xyz,0,0) {}
18  StTpcLocalSectorDirection(double x, double y, double z, int sector, int row=0) :
19  StTpcCoordinate(x,y,z,sector,row) {}
20  StTpcLocalSectorDirection(const StThreeVector<double>& xyz, int sector, int row=0) :
21  StTpcCoordinate(xyz,sector,row) {}
22  virtual ~StTpcLocalSectorDirection() {}
23 };
24 ostream& operator<<(ostream&, const StTpcLocalSectorDirection&);
25 #endif