removing header metadata for ctb binary files

This commit is contained in:
2019-04-25 19:20:13 +02:00
parent 2eac75aa0b
commit f5feb081ab
5 changed files with 67 additions and 36 deletions

View File

@ -33,11 +33,12 @@ class BinaryFile : private virtual slsDetectorDefs, public File, public BinaryFi
* @param dr pointer to dynamic range
* @param portno pointer to udp port number for logging
* @param smode pointer to silent mode
* @param hwenable header writer enable (ctb)
*/
BinaryFile(int ind, uint32_t* maxf,
int* nd, char* fname, char* fpath, uint64_t* findex, bool* owenable,
int* dindex, int* nunits, uint64_t* nf, uint32_t* dr, uint32_t* portno,
bool* smode);
bool* smode, bool hwenable);
/**
* Destructor
@ -116,5 +117,8 @@ class BinaryFile : private virtual slsDetectorDefs, public File, public BinaryFi
/** Number of actual packets caught in file */
uint64_t numActualPacketsInFile;
/** Header writer enable */
bool headerWriteEnable;
};