Changes in classes/DelphesPileUpReader.h [cab38f6:1716933] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesPileUpReader.h
rcab38f6 r1716933 29 29 30 30 #include <stdio.h> 31 #include <rpc/types.h> 32 #include <rpc/xdr.h> 31 #include <stdint.h> 32 33 class DelphesXDRReader; 33 34 34 35 class DelphesPileUpReader … … 40 41 ~DelphesPileUpReader(); 41 42 42 bool ReadParticle(int &pid,43 bool ReadParticle(int32_t &pid, 43 44 float &x, float &y, float &z, float &t, 44 45 float &px, float &py, float &pz, float &e); 45 46 46 bool ReadEntry( quad_t entry);47 bool ReadEntry(int64_t entry); 47 48 48 quad_t GetEntries() const { return fEntries; }49 int64_t GetEntries() const { return fEntries; } 49 50 50 51 private: 51 52 52 quad_t fEntries;53 int64_t fEntries; 53 54 54 int fEntrySize;55 int fCounter;55 int32_t fEntrySize; 56 int32_t fCounter; 56 57 57 58 FILE *fPileUpFile; 58 char*fIndex;59 char*fBuffer;59 uint8_t *fIndex; 60 uint8_t *fBuffer; 60 61 61 XDR *fInputXDR;62 XDR *fIndexXDR;63 XDR *fBufferXDR;62 DelphesXDRReader *fInputReader; 63 DelphesXDRReader *fIndexReader; 64 DelphesXDRReader *fBufferReader; 64 65 }; 65 66 66 67 #endif // DelphesPileUpReader_h 67 68
Note:
See TracChangeset
for help on using the changeset viewer.