~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/input/InputCppDAQData/UnpackEventLib.hh

  • Committer: Christopher Hunt
  • Date: 2015-06-18 14:48:59 UTC
  • mfrom: (697.69.1 merge)
  • mto: (697.69.2 merge_hunt)
  • mto: This revision was merged to the branch mainline in revision 708.
  • Revision ID: christopher.hunt08@imperial.ac.uk-20150618144859-rki5ma1lv8722w41
Merged in latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
 
302
302
class VLSBCppDataProcessor : public ZeroSupressionFilter {
303
303
 public:
304
 
  VLSBCppDataProcessor() :ZeroSupressionFilter() {_equipment="VLSB";}
 
304
  VLSBCppDataProcessor()
 
305
  : ZeroSupressionFilter(), _current_pEvent(-1),
 
306
  _n_pEvent(0), _is_first(true) {_equipment="VLSB";}
 
307
 
305
308
  virtual ~VLSBCppDataProcessor() {}
306
309
 
307
310
 /** Unpack a single event part to JSON.
325
328
 
326
329
  private:
327
330
 
 
331
  int _current_pEvent;
 
332
  int _n_pEvent;
 
333
  bool _is_first;
 
334
 
328
335
  TtackerPartEventArray _tracker1_spill;
329
336
  TtackerPartEventArray _tracker0_spill;
330
 
  TtackerPartEventArray _single_st_spill;
 
337
//   TtackerPartEventArray _single_st_spill;
331
338
};
332
339
 
333
340
////////////////////////////////////////////////////////////////////////////////