///////////////////////////////////////////////////////////////////////////
//                                                                       
// The Tagger class contains the information about the ESA beam tagger  
//                                                                       
///////////////////////////////////////////////////////////////////////////

#include "Tagger.h"

ClassImp(Tagger)

///________________________________________________________________________
 Tagger::Tagger(){
  // Default constructor
}
///________________________________________________________________________
 Tagger::Tagger(ESAPID* pid) : m_PID(pid) {
  // Create a Tagger object with logID of log
}
//_________________________________________________________________________
 Tagger::~Tagger(){
  // Destructor, calls Clean to remove TObjArrays.
  delete m_PID;
}


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.