Skip to content
Snippets Groups Projects
Commit 09d5c5d0 authored by clantz's avatar clantz
Browse files

Removed constructor implementation and fixed GetElement prototype

parent b761fee2
No related branches found
No related tags found
No related merge requests found
......@@ -18,12 +18,12 @@
class Detector{
public:
Detector( ){};
Detector( );
Detector( std::vector< Channel > _element ){ Element = _element;}
virtual ~Detector( ){};
virtual ~Detector( );
virtual Channel* GetElement (int row, int column,int runNum, std::string type) = 0;
virtual Channel* GetElement (int row, int column);
virtual double* GetPosition ( ) { return Position; };
virtual double* GetAngle ( ) { return Angle; };
virtual void SetElement ( Channel _entry) { Element.push_back(_entry); };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment