Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:20

0001 #ifndef PHOOL_PHNODERESET_H
0002 #define PHOOL_PHNODERESET_H
0003 
0004 //  Declaration of class PHNodeReset
0005 //  Purpose: strategy which calls reset() on a PHNode
0006 //  Author: Matthias Messer
0007 
0008 #include "PHNodeOperation.h"
0009 
0010 class PHNode;
0011 
0012 class PHNodeReset : public PHNodeOperation
0013 {
0014  public:
0015   PHNodeReset() = default;
0016   ~PHNodeReset() override = default;
0017 
0018  protected:
0019   void perform(PHNode *) override;
0020 };
0021 
0022 #endif