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