///////////////////////////////////////////////////////////////////////////
//                                                                        
// The TileID class contains a tile ID number.  
// TileID is used in the ACDTile class.
//                                                                        
///////////////////////////////////////////////////////////////////////////

// access and set functions for binary calorimeter tags
// Version 1.0 21 Oct 1998 Richard creation
// Version 1.1 25 Oct 1999 R.Dubois Clone from LCD

#include "TileID.h"

ClassImp(TileID)

///________________________________________________________________________
 TileID::TileID(){
  m_tag = 0;
}
///________________________________________________________________________
 TileID::TileID(UInt_t tag=0) : m_tag(tag) {
  // Create a TileID object with number tag
  }
///________________________________________________________________________
 UInt_t TileID::tag() const { 
  // Returns the log number
  return m_tag;
}
///________________________________________________________________________
 void TileID::setTag(UInt_t tagVal) { 
  // Sets the m_tag to tagVal
   m_tag = tagVal;
}
///________________________________________________________________________


ROOT page - Class index - Top of the page

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.