Back to index

PHObject.C

 
//----------------------------------------------------------------------------- 
// 
//  PHOOL Program Library   
//  Copyleft (C) PHenix collaboration, 2001 
// 
//  Implementation of class PHObject 
// 
//----------------------------------------------------------------------------- 
#include "PHObject.h"  
#include <iostream.h> 
 
//ClassImp(PHObject) 
 
void PHObject::identify(ostream& out) const 
{ 
  out << "identify yourself: I am a PHObject object" << endl; 
} 

Back to index