//----------------------------------------------------------- // File and Version Information: // // // Description: // Abstract Residual Object // Allows for several types of Residuals, not just space points // // // Environment: // Software NOT developed for the PANDA Detector at FAIR. // // Author List: // S (original author) // Physik Department E18, TUM // //----------------------------------------------------------- #ifndef ABSRESIDUAL_H #define ABSRESIDUAL_H #include #include class AbsResidual : public TObject { public: AbsResidual(); virtual ~AbsResidual(){;} void setRefBranchName(const TString& n) {fRefBranchName=n;} TString getRefBranchName() const {return fRefBranchName;} protected: TString fRefBranchName; public: ClassDef(AbsResidual,1) }; #endif // ABSRESIDUAL_H