//--------------------------------------------------------------------------
// $Id: EmcBumpI.cc,v 1.2 2004/01/13 18:57:09 echarles Exp $
//
// Environment:
// Software developed for BaBar expirment @ SLAC B-Factory
//
// Author: E. Charles
//
// Copyright: (C) 2003 LBNL
//
// Description:
// This is the interface for persistent DchHits.EmcBumps.
//
// This interface requires the following functions:
//
// UInt_t nDigis() const // Total number of digis
// UInt_t nSharedDigis() const // Number of digis shared with other bumps
// const EmcDigiI* sharedDigi(UInt_t i) const // Return a shared digi by index
// Double_t weight(UInt_t i) const // Return a shared digi weight by index
// UInt_t nUnSharedDigis() const // Number of unshared digis
// const EmcDigiI* unSharedDigi(UInt_t i) const // Return an unshared digi by index
// const EmcClusterI* cluster() const // The cluster this bump is part of
//
//----------------
// BaBar header
//----------------
#include "BaBar/BaBar.hh"
//-----------------------
// This Class's Header --
//-----------------------
#include "EmcDataK/EmcBumpI.hh"
//-------------
// C Headers --
//-------------
extern "C" {
}
//---------------
// C++ Headers --
//---------------
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "EmcData/EmcBump.hh"
//-----------------------------------------------------------------------
// Local Macros, Typedefs, Structures, Unions and Forward Declarations --
//-----------------------------------------------------------------------
ClassImp(EmcBumpI) ;
// -----------------------------------------------
// -- Static Data & Function Member Definitions --
// -----------------------------------------------
// ----------------------------------------
// -- Public Function Member Definitions --
// ----------------------------------------
//----------------
// Constructors --
//----------------
EmcBumpI::EmcBumpI() //{}
:KanObj(),
KanClassI(),
_cache(*this){
}
//--------------
// Destructor --
//--------------
EmcBumpI::~EmcBumpI() {
}
//-------------
// Selectors --
//-------------
ROOT page - Class index - Class Hierarchy - 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.
|