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