Changes in classes/DelphesPileUpWriter.h [cab38f6:1716933] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesPileUpWriter.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 DelphesXDRWriter; 33 34 34 35 class DelphesPileUpWriter … … 40 41 ~DelphesPileUpWriter(); 41 42 42 void WriteParticle(int pid,43 void WriteParticle(int32_t pid, 43 44 float x, float y, float z, float t, 44 45 float px, float py, float pz, float e); … … 50 51 private: 51 52 52 quad_t fEntries;53 int fEntrySize;54 quad_t fOffset;53 int64_t fEntries; 54 int32_t fEntrySize; 55 int64_t fOffset; 55 56 56 57 FILE *fPileUpFile; 57 char*fIndex;58 char*fBuffer;58 uint8_t *fIndex; 59 uint8_t *fBuffer; 59 60 60 XDR *fOutputXDR;61 XDR *fIndexXDR;62 XDR *fBufferXDR;61 DelphesXDRWriter *fOutputWriter; 62 DelphesXDRWriter *fIndexWriter; 63 DelphesXDRWriter *fBufferWriter; 63 64 }; 64 65 65 66 #endif // DelphesPileUpWriter_h 66 67
Note:
See TracChangeset
for help on using the changeset viewer.