Back to index

See source file

PHCallEvent.h

 
//----------------------------------------------------------------------------- 
//  $Header: /afs/rhic/phenix/cvsroot/offline/framework/phool/PHCallEvent.h,v 1.4 2000/10/17 19:17:54 irina Exp $ 
// 
//  The PHOOL's Software 
//  Copyright (C) PHENIX collaboration, 1999 
// 
//  Declaration of class PHCallEvent 
// 
//  Purpose: a strategy used by PHModuleManager 
// 
//  Author: Matthias Messer 
//----------------------------------------------------------------------------- 
#ifndef PHCALLEVENT_H 
#define PHCALLEVENT_H 
 
#include "phool.h" 
#include "PHNodeOperation.h" 
#include "PHCompositeNode.h" 
 
class PHCallEvent : public PHNodeOperation {  
   
public:  
   PHCallEvent(PHCompositeNode*); 
   ~PHCallEvent();  
 
public:  
   virtual void perform(PHNode*); 
 
protected: 
   PHCallEvent(); 
 
protected: 
  PHCompositeNode *startNode;        
  
};  
 
#endif /* PHCALLEVENT_H */  

Back to index

See source file