First page Back Continue Last page Summary Graphic
StreamerInfo example
return "TNamed;TAttLine;fX;fY;fSize";
return "TObject;fA;fB;Int_t a,b,c;Float_t x,y,z";
In case of existing class data members (basic types or classes), just give the list of names.
In case of new data, give the type followed by the list of basic types, or classes.
Support for arrays: (rootcint upgrade)
- Int_t fN;
- Float_t *fX ; //[fN] x coordinates
- Float_t *fY; //[fN] y coordinates
Notes: