// --> Header File della Classe Seminario /* You could include the multigauss function here, as well implement a method inside the class that performes the fit, giving as input the histogram or the file... */ #ifndef MULTIGAUSS_HH #define MULTIGAUSS_HH class MultiGauss { private: static TVector *_TVAmpli, *_TVMean, *_TVSigma; /* static set the values assigned to those variable to be kept in memory even off the scope. */ public: MultiGauss(); void SetAmpli(TVector *TVA); TVector* Ampli(); void SetMean(TVector* TVM); TVector* Mean(); void SetSigma(TVector* TVS); TVector* Sigma(); // end classe MultiGauss }; #endif