#ifndef HTofinoShowerMapCell_H
#define HTofinoShowerMapCell_H
#pragma interface
#include "TObject.h"
class HTofinoShowerMapCell : public TObject {
public:
HTofinoShowerMapCell():m_nCellNumber(0) {}
HTofinoShowerMapCell(Int_t nCell) {m_nCellNumber = nCell;}
~HTofinoShowerMapCell() {}
Int_t getCellNumber() {return m_nCellNumber;}
void setCellNumber(Int_t nCell){m_nCellNumber = nCell;}
ClassDef(HTofinoShowerMapCell,2)
private:
Int_t m_nCellNumber;
};
#endif
Last change: Sat May 22 13:16:54 2010
Last generated: 2010-05-22 13:16
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.