#ifndef MyClass_h #define MyClass_h #include "Riostream.h" #include "TObject.h" class MyClass : public TObject { public: MyClass(); virtual ~MyClass(); void FillProfile(Int_t numberOfPoints, Int_t** profileData); protected: Int_t fNumberOfPoints; Int_t* fProfile1; //[fNumberOfPoints] Int_t* fProfile2; //[fNumberOfPoints] Int_t* fProfile3; //[fNumberOfPoints] Int_t* fProfile4; //[fNumberOfPoints] Int_t* fProfile5; //[fNumberOfPoints] Int_t* fProfile6; //[fNumberOfPoints] Int_t* fProfile7; //[fNumberOfPoints] Int_t* fProfile8; //[fNumberOfPoints] Int_t* fProfile9; //[fNumberOfPoints] Int_t* fProfile10; //[fNumberOfPoints] Int_t* fProfile11; //[fNumberOfPoints] Int_t* fProfile12; //[fNumberOfPoints] Int_t* fProfile13; //[fNumberOfPoints] ClassDef(MyClass, 1); }; #endif