ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DumpTrkrHitTruthAssoc.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DumpTrkrHitTruthAssoc.cc
2 
3 #include <phool/PHIODataNode.h>
4 
7 
8 #include <map>
9 #include <ostream>
10 #include <string>
11 #include <utility>
12 
13 using namespace std;
14 
16 
18  : DumpObject(NodeName)
19 {
20  return;
21 }
22 
24 {
25  TrkrClusterContainer *trkrclustercontainer = nullptr;
26  MyNode_t *thisNode = static_cast<MyNode_t *>(myNode);
27  if (thisNode)
28  {
29  trkrclustercontainer = thisNode->getData();
30  }
31  if (trkrclustercontainer)
32  {
33  trkrclustercontainer->identify(*fout);
34  }
35  return 0;
36 }