#ifndef TGO4EVENTCALIBRATION_H #define TGO4EVENTCALIBRATION_H #include "TGo4Parameter.h" /** Data object for calibration of the input event. * Is used by event processor to get external parameters * during runtime without re-creating the event processor * each time. * @interface */ class TGo4EventCalibration : public TGo4Parameter { public: TGo4EventCalibration(); TGo4EventCalibration(const char* name); virtual ~TGo4EventCalibration(); /** update contents of paramter class with external object. */ virtual Bool_t UpdateFrom(TGo4Parameter* rhs); ClassDef(TGo4EventCalibration,1) }; #endif //TGO4EVENTCALIBRATION_H