Class Reference for E1039 Core & Analysis Software
PHNodeReset.cc
Go to the documentation of this file.
1 // Implementation of class PHNodeReset
2 // Author: Matthias Messer
3 
4 #include "PHNodeReset.h"
5 #include "PHDataNode.h"
6 #include "PHIODataNode.h"
7 #include "PHObject.h"
8 
9 #include <iostream>
10 
11 using namespace std;
12 
14 {
15  if (node->getResetFlag() != True) return;
16  if (verbosity > 0)
17  {
18  cout << "PHNodeReset: Resetting " << node->getName() << endl;
19  }
20  if (node->getType() == "PHDataNode")
21  {
22  if (node->getObjectType() == "PHObject")
23  {
24  (static_cast<PHDataNode<PHObject>*>(node))->getData()->Reset();
25  }
26  }
27  else if (node->getType() == "PHIODataNode")
28  {
29  if (node->getObjectType() == "PHObject")
30  {
31  (static_cast<PHIODataNode<PHObject>*>(node))->getData()->Reset();
32  }
33  }
34 }
virtual void perform(PHNode *)
Definition: PHNodeReset.cc:13
Definition: PHNode.h:15
const std::string getType() const
Definition: PHNode.h:31
const std::string getObjectType() const
Definition: PHNode.h:30
const std::string getName() const
Definition: PHNode.h:32
virtual PHBoolean getResetFlag() const
Definition: PHNode.cc:89
static const int True
Definition: phool.h:10