ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/interface/Array.h
(Generate patch)

Comparing UserCode/MitAna/DataCont/interface/Array.h (file contents):
Revision 1.8 by loizides, Wed Dec 10 11:26:52 2008 UTC vs.
Revision 1.9 by loizides, Thu Dec 18 13:34:16 2008 UTC

# Line 111 | Line 111 | inline ArrayElement *mithep::Array<Array
111    if (idx<fNumEntries)
112      return static_cast<ArrayElement*>(fArray.UncheckedAt(idx));
113  
114 <  TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s",
114 >  TObject::Fatal("At","Index too large: (%u < %u violated) for %s containing %s",
115                   idx, fNumEntries, GetName(), ArrayElement::Class_Name());
116    return 0;
117   }
# Line 125 | Line 125 | inline const ArrayElement *mithep::Array
125    if (idx<fNumEntries)
126      return static_cast<const ArrayElement*>(fArray.UncheckedAt(idx));
127  
128 <  TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s",
128 >  TObject::Fatal("At","Index too large: (%u < %u violated) for %s containing %s",
129                   idx, fNumEntries, GetName(), ArrayElement::Class_Name());
130    return 0;
131   }
# Line 175 | Line 175 | inline TObject *mithep::Array<ArrayEleme
175    if (idx<fNumEntries)
176      return fArray.UncheckedAt(idx);
177  
178 <  TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s",
178 >  TObject::Fatal("At","Index too large: (%u < %u violated) for %s containing %s",
179                   idx, fNumEntries, GetName(), ArrayElement::Class_Name());
180    return 0;
181   }
# Line 189 | Line 189 | const TObject *mithep::Array<ArrayElemen
189    if (idx<fNumEntries)
190      return static_cast<const TObject*>(fArray.UncheckedAt(idx));
191  
192 <  TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s",
192 >  TObject::Fatal("At","Index too large: (%u < %u violated) for %s containing %s",
193                   idx, fNumEntries, GetName(), ArrayElement::Class_Name());
194    return 0;
195   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines