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