#ifndef ROOT_TObject #include "TObject.h" #endif class MyObject : public TObject { protected: int KLM; int K; int L; int M; double *ArrK; //[KLM] where KLM=K+L+M double *ArrL; //![L] declared transient double *ArrM; //![M] declared transient MyObject(); ClassDef(MyObject,1) some description };