bergamaschi 002444fd57 debugged
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@164 951219d9-93cf-4727-9268-0efd64621fa3
2012-03-26 08:46:45 +00:00

43 lines
612 B
C++

#ifndef MYTHEN_DETECTOR_H
#define MYTHEN_DETECTOR_H
//#include <ostream>
#include "slsDetector.h"
#include "usersFunctions.h"
#define defaultTDead {170,90,750}
//using namespace std;
/**
\mainpage C++ class with MYTHEN specific functions
*
@author Anna Bergamaschi
*/
class mythenDetector : public slsDetector{
public:
/**
(default) constructor
*/
mythenDetector(int id=0, detectorType t=MYTHEN) : slsDetector(t, id){};
//slsDetector(string const fname);
// ~slsDetector(){while(dataQueue.size()>0){}};
/** destructor */
virtual ~mythenDetector(){};
};
#endif