Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesPileUpWriter.h

    r1716933 rcab38f6  
    2929
    3030#include <stdio.h>
    31 #include <stdint.h>
    32 
    33 class DelphesXDRWriter;
     31#include <rpc/types.h>
     32#include <rpc/xdr.h>
    3433
    3534class DelphesPileUpWriter
     
    4140  ~DelphesPileUpWriter();
    4241
    43   void WriteParticle(int32_t pid,
     42  void WriteParticle(int pid,
    4443    float x, float y, float z, float t,
    4544    float px, float py, float pz, float e);
     
    5150private:
    5251
    53   int64_t fEntries;
    54   int32_t fEntrySize;
    55   int64_t fOffset;
     52  quad_t fEntries;
     53  int fEntrySize;
     54  quad_t fOffset;
    5655
    5756  FILE *fPileUpFile;
    58   uint8_t *fIndex;
    59   uint8_t *fBuffer;
     57  char *fIndex;
     58  char *fBuffer;
    6059
    61   DelphesXDRWriter *fOutputWriter;
    62   DelphesXDRWriter *fIndexWriter;
    63   DelphesXDRWriter *fBufferWriter;
     60  XDR *fOutputXDR;
     61  XDR *fIndexXDR;
     62  XDR *fBufferXDR;
    6463};
    6564
    6665#endif // DelphesPileUpWriter_h
     66
     67
Note: See TracChangeset for help on using the changeset viewer.