#ifndef HTofinoShowerMapCell_H
#define HTofinoShowerMapCell_H
#pragma interface

#include "TObject.h"

class HTofinoShowerMapCell : public TObject {
public:
   HTofinoShowerMapCell():m_nCellNumber(0) {}
// initialization could be used e.g. to clear the data element
   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) //Tofino/shower mapping parameters per cell

private:
   Int_t m_nCellNumber; // number of tofino cell which covers 
                        // the same area as pad in shower detector	
};

#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.