Changeset 3a61449 in git
- Timestamp:
- May 6, 2014, 11:29:55 AM (11 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 6caff58
- Parents:
- 00078bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesPileUpReader.cc
r00078bc r3a61449 57 57 58 58 // read number of events 59 fseek (fPileUpFile, -8, SEEK_END);59 fseeko(fPileUpFile, -8, SEEK_END); 60 60 xdr_hyper(fInputXDR, &fEntries); 61 61 … … 67 67 68 68 // read index of events 69 fseek (fPileUpFile, -8 - 8*fEntries, SEEK_END);69 fseeko(fPileUpFile, -8 - 8*fEntries, SEEK_END); 70 70 xdr_opaque(fInputXDR, fIndex, fEntries*8); 71 71 } … … 122 122 123 123 // read event 124 fseek (fPileUpFile, offset, SEEK_SET);124 fseeko(fPileUpFile, offset, SEEK_SET); 125 125 xdr_int(fInputXDR, &fEntrySize); 126 126
Note:
See TracChangeset
for help on using the changeset viewer.