ROOT logo
#pragma implementation
#include "htofraw.h"
#include "TDirectory.h"
#include "TTree.h"

//*-- Author : W.Koenig / W. Schoen / D. Vassiliev
//*-- Modified : 05/06/98 by Manuel Sanchez
//*-- Modified : 12/12/97 by Walter Karig


//_HADES_CLASS_DESCRIPTION 
////////////////////////////
//HTofRaw
//
// This class contains TOF raw data
//
// adapted from /u/halo/packages/abase/new by Manuel Sanchez (17/06/98)
////////////////////////////

ClassImp(HTofRaw)


  void  HTofRaw::doit(void) {
    TTree *tree=(TTree *)gDirectory->Get("T");
    tree->Draw("HTofRaw.fData.fLeftT>>newhist");
}

HTofRaw::HTofRaw(void) {
    clear();
}

void HTofRaw::clear(){
     nHit=0;
     rightT= leftT=0.0;
     rightQ= leftQ=0.0;
}

HTofRaw::~HTofRaw(void) {
}

 htofraw.cc:1
 htofraw.cc:2
 htofraw.cc:3
 htofraw.cc:4
 htofraw.cc:5
 htofraw.cc:6
 htofraw.cc:7
 htofraw.cc:8
 htofraw.cc:9
 htofraw.cc:10
 htofraw.cc:11
 htofraw.cc:12
 htofraw.cc:13
 htofraw.cc:14
 htofraw.cc:15
 htofraw.cc:16
 htofraw.cc:17
 htofraw.cc:18
 htofraw.cc:19
 htofraw.cc:20
 htofraw.cc:21
 htofraw.cc:22
 htofraw.cc:23
 htofraw.cc:24
 htofraw.cc:25
 htofraw.cc:26
 htofraw.cc:27
 htofraw.cc:28
 htofraw.cc:29
 htofraw.cc:30
 htofraw.cc:31
 htofraw.cc:32
 htofraw.cc:33
 htofraw.cc:34
 htofraw.cc:35
 htofraw.cc:36
 htofraw.cc:37
 htofraw.cc:38
 htofraw.cc:39
 htofraw.cc:40