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