SLAC PEP-II
BABAR
SLAC<->RAL
Babar logo
HEPIC E,S & H Databases PDG HEP preprints
Organization Detector Computing Physics Documentation
Personnel Glossary Sitemap Search Hypernews
Unwrap page!
Comp. Search
Who's who?
Meetings
FAQ Homepage
Archive
Environment
Administration
New User Info.
Web Info/Tools
Monitoring
Training
Tools & Utils
Programming
C++ Standard
SRT, AFS, CVS
QA and QC
Remedy
Histogramming
Operations
PromptReco
Simulation Production
Online SW
Dataflow
Detector Control
Evt Processing
Run Control
Calibration
Databases
Offline
Workbook
Coding Standards
Simulation
Reconstruction
Prompt Reco.
BaBar Grid
Data Distribution
Beta & BetaTools
Kanga & Root
Analysis Tools
RooFit Toolkit
Data Management
Data Quality
Event display
Event Browser
Code releases
Databases
Check this page for HTML 4.01 Transitional compliance with the
W3C Validator
(More checks...)
//--------------------------------------------------------------------------
// $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.