00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef StGammaFitterResult_h
00012 #define StGammaFitterResult_h
00013
00014
00015 #include "TObject.h"
00016
00017 class StGammaFitterResult : public TObject {
00018 public:
00019 StGammaFitterResult();
00020
00021 void Clear(Option_t* option = "");
00022
00023 float yield;
00024 float yieldError;
00025 float centroid;
00026 float centroidError;
00027 float residual;
00028 float mean;
00029 float rms;
00030 float chiSquare;
00031 int ndf;
00032 float prob;
00033
00034 virtual const char* GetCVS() const
00035 {static const char cvs[]="Tag $Name: $ $Id: StGammaFitterResult.h,v 1.6 2008/06/30 14:58:40 jwebb Exp $ built "__DATE__" "__TIME__; return cvs;}
00036
00037 private:
00038 ClassDef(StGammaFitterResult,2);
00039 };
00040
00041 #endif