mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 15:00:02 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@164 951219d9-93cf-4727-9268-0efd64621fa3
43 lines
612 B
C++
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
|