/home/bes3soft/bes3soft/Boss/7.0.2/dist/7.0.2/Reconstruction/MdcPatRec/TrkBase/TrkBase-00-01-12/src/AbsEvtObj.cxx

Go to the documentation of this file.
00001 // File and Version Information:
00002 //      $Id: AbsEvtObj.cxx,v 1.1.1.1 2005/04/21 06:01:42 zhangy Exp $
00003 //
00004 // Description:
00005 //      implementation for AbsEvtObj class
00006 //
00007 //
00008 // Author List:
00009 //      Bob Jacobsen
00010 //
00011 // 
00012 //------------------------------------------------------------------------
00013 
00014 //#include "BaBar/BaBar.hh"
00015 
00016 //-----------------------
00017 // This Class's Header --
00018 //-----------------------
00019 #include <assert.h>
00020 #include "TrkBase/AbsEvtObj.h"
00021 #include <iostream>
00022 using std::cout;
00023 using std::endl;
00024 using std::ostream;
00025 
00026 //              ----------------------------------------
00027 //              -- Public Function Member Definitions --
00028 //              ----------------------------------------
00029 
00030 //--------------
00031 // Destructor --
00032 //--------------
00033 AbsEvtObj::~AbsEvtObj() {}
00034 
00035 void AbsEvtObj::print(ostream& ) const {
00036   // single line print; this is a default behavior
00037   cout << "(AbsEvtObj print() called with no override; this is an error!)";
00038 }
00039 
00040 void AbsEvtObj::printAll(ostream& ) const {
00041   // single line print; this is a default behavior
00042   cout << "AbsEvtObj printAll() called with no override; this is an error!"<<endl;
00043 }
00044 
00045 
00046 ostream&  operator << (ostream& o, const AbsEvtObj& a) {a.print(o); return o;}
00047 
00048 

Generated on Tue Nov 29 23:13:40 2016 for BOSS_7.0.2 by  doxygen 1.4.7