//----------------------------------------------------------- // // Description: // // Straight Line representation of a Deviation Map // needs parameter management // EXPERIMENTAL // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Felix Boehmer TUM (original author) // //----------------------------------------------------------- #ifndef TPCDEVMAPSLA_H #define TPCDEVMAPSLA_H // Base Class Headers ---------------- #include "TpcFieldCylGrid.h" #include "TpcDevmapCyl.h" class TpcDevmapSLA : public TpcDevmapCyl { public: // Constructors/Destructors --------- TpcDevmapSLA(const char* const, double); virtual ~TpcDevmapSLA() {;} // Operators virtual void print(std::ostream&) const {;} // Accessors ----------------------- virtual TVector3 value(const TVector3&) const; // Modifiers ----------------------- private: //slopes for straight lines for std::vector fslopesR; //dev. in R std::vector fslopesPerpR; //dev. perp to R }; #endif