ROOT logo
#ifndef HTOFUNPACKER99_H
#define HTOFUNPACKER99_H

// File: tofunpacker99.h
//
// Author: Walter Karig <W.Karig@gsi.de>
// Last update: 28/5/2000 by R. Holzmann 
//
#include "hldsubevt.h"
#include "hldunpack.h"
#include "tofdef.h"

class HTofUnpacker99: public HldUnpack {
public:
  HTofUnpacker99(void);
  ~HTofUnpacker99(void);
  Int_t getSubEvtId() const { return 400; }
  Int_t byte(Int_t b, UInt4 i) { return (i >> (32 - 8*b)) & 0xff; }
  Int_t execute(); 
  Bool_t init(void);
protected:
  Int_t fill();
  UInt_t *pTofData;

public:
  ClassDef(HTofUnpacker99,0)         // unpack TOF November 1999 data
};          

#endif /* !HTOFUNPACKER99_H */
 htofunpacker99.h:1
 htofunpacker99.h:2
 htofunpacker99.h:3
 htofunpacker99.h:4
 htofunpacker99.h:5
 htofunpacker99.h:6
 htofunpacker99.h:7
 htofunpacker99.h:8
 htofunpacker99.h:9
 htofunpacker99.h:10
 htofunpacker99.h:11
 htofunpacker99.h:12
 htofunpacker99.h:13
 htofunpacker99.h:14
 htofunpacker99.h:15
 htofunpacker99.h:16
 htofunpacker99.h:17
 htofunpacker99.h:18
 htofunpacker99.h:19
 htofunpacker99.h:20
 htofunpacker99.h:21
 htofunpacker99.h:22
 htofunpacker99.h:23
 htofunpacker99.h:24
 htofunpacker99.h:25
 htofunpacker99.h:26
 htofunpacker99.h:27
 htofunpacker99.h:28
 htofunpacker99.h:29