StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGammaFitterResult.h
1 // -*- mode: C++ -*- Put Emacs in C++ mode
2 
3 //
4 // Pibero Djawotho <pibero@indiana.edu>
5 // Indiana University
6 // 1 May 2008
7 //
8 // StGammaFitterResult: container for result of gamma fitter.
9 //
10 
11 #ifndef StGammaFitterResult_h
12 #define StGammaFitterResult_h
13 
14 // ROOT
15 #include "TObject.h"
16 
17 class StGammaFitterResult : public TObject {
18 public:
20 
21  void Clear(Option_t* option = "");
22 
23  float yield;
24  float yieldError;
25  float centroid;
26  float centroidError;
27  float residual;
28  float mean;
29  float rms;
30  float chiSquare;
31  int ndf;
32  float prob;
33 
34  virtual const char* GetCVS() const
35  {static const char cvs[]="Tag $Name: $ $Id: StGammaFitterResult.h,v 1.7 2014/08/06 11:43:18 jeromel Exp $ built " __DATE__ " " __TIME__; return cvs;}
36 
37 private:
38  ClassDef(StGammaFitterResult,2);
39 };
40 
41 #endif