More information on this package is here.
#ifndef _TSCPBClass_
#define _TSCPBClass_
#include <iostream>
using namespace std;
#include "TObject.h"
#include "TString.h"
class TSCPBClass: public TObject{
public:
Int_t Scpdht;
Float_t Edep;
Float_t Time;
Float_t Path;
Float_t Chi2sc;
Int_t Status;
public:
TSCPBClass(){};
TSCPBClass(TSCPBClass *TmpSCPB);
virtual ~TSCPBClass(){};
inline Int_t GetScpdht() { return Scpdht; }
inline Float_t GetEdep() { return Edep; }
inline Float_t GetTime() { return Time; }
inline Float_t GetPath() { return Path; }
inline Float_t GetChi2() { return Chi2sc; }
inline Int_t GetStatus() { return Status; }
inline Int_t GetSector() { return Scpdht / 10000 ; }
inline Int_t GetPaddle() { return ( Scpdht % 10000 ) / 100 ; }
inline Int_t GetHit() { return ( Scpdht % 10000 ) % 100 ; }
void Print();
ClassDef(TSCPBClass,1)
};
#endif
Author: Maurik Holtrop
Last update: ClasTool/ClasBanks:$Name: $:$Id: TSCPBClass.cc,v 1.4 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