More information on this package is here.
#ifndef _TSTPBClass_
#define _TSTPBClass_
#include <iostream>
using namespace std;
#include "TObject.h"
#include "TString.h"
class TSTPBClass: public TObject {
public:
Int_t SThid;
Float_t Time;
Float_t Path;
Int_t Status;
public:
TSTPBClass(){};
TSTPBClass(TSTPBClass *TmpSTPB);
virtual ~TSTPBClass(){};
inline Int_t GetHitID() { return ( SThid % 100 ); }
inline Int_t GetSector() { return ( SThid / 100 ) ; }
inline Float_t GetPath() { return Path; }
inline Int_t GetStatus() { return Status; }
void Print();
ClassDef(TSTPBClass,1)
};
#endif
Author: Maurik Holtrop
Last update: ClasTool/ClasBanks:$Name: $:$Id: TSTPBClass.cc,v 1.3 2007/03/01 22:26:59 holtrop Exp $
CopyLeft - This code is freely available.
ROOT Home page - ClasTool Class index - Class Hierarchy - Top of the page