// // ThreshScan.h // #ifndef _THRESHSCAN_H #define _THRESHSCAN_H #include "Scan.h" class ThreshScan : public Scan { public : ThreshScan (double, double, double, DetPlane*); int init (double); virtual int setVariable (double*); virtual void headerToFile (ofstream&); private : DetPlane* _detPlane; }; #endif _THRESHSCAN_H