# | Line 155 | Line 155 | void mithep::Array<ArrayElement>::Print( | |
---|---|---|
155 | // Print out elements of array. | |
156 | ||
157 | printf("%s: Contains %d (out of %d) objs of name %s\n", | |
158 | < | GetName(), GetEntries(), GetSize(), ArrayElement::Class_Name()); |
158 | > | GetName(), Entries(), GetSize(), ArrayElement::Class_Name()); |
159 | ||
160 | if (opt && opt[0]=='l') { | |
161 | < | const UInt_t N = GetEntries(); |
161 | > | const UInt_t N = Entries(); |
162 | for (UInt_t i=0; i<N; ++i) { | |
163 | printf("%4d: ",i); | |
164 | At(i)->Print(opt); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |