00001 /* 00002 * TSTSGeometry.h 00003 * 00004 * Created on: Jan 20, 2012 00005 * Author: isorokin 00006 */ 00007 00008 #ifndef TSTSGEOMETRY_H_ 00009 #define TSTSGEOMETRY_H_ 00010 00011 #include "TSTSTopology.h" 00012 #include "../TSpacepoint.h" 00013 #include "TSTSHit.h" 00014 00015 class TSTSGeometry { 00016 00017 public: 00018 TSTSGeometry(); 00019 virtual ~TSTSGeometry(); 00020 00021 void MakeSpacepoint( TSTSHit const & hit, Int_t det, TSpacepoint & point ) const; 00022 void MakeSpacepoint( TSTSHit const * hit, Int_t det, TSpacepoint & point ) const { MakeSpacepoint( *hit, det, point ); } 00023 // void MakeSpacepoint( TSTSCluster const & cluster, Int_t det, TSpacepoint & point ) const; 00024 00025 ClassDef(TSTSGeometry,1) 00026 }; 00027 00028 #endif /* TSTSGEOMETRY_H_ */