ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHNodeReset.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHNodeReset.h
1 #ifndef PHOOL_PHNODERESET_H
2 #define PHOOL_PHNODERESET_H
3 
4 // Declaration of class PHNodeReset
5 // Purpose: strategy which calls reset() on a PHNode
6 // Author: Matthias Messer
7 
8 #include "PHNodeOperation.h"
9 
10 class PHNode;
11 
13 {
14  public:
16  ~PHNodeReset() override {}
17 
18  protected:
19  void perform(PHNode*) override;
20 };
21 
22 #endif