File indexing completed on 2025-08-06 08:17:56
0001 #include "DumpTrkrClusterHitAssoc.h"
0002
0003 #include <phool/PHIODataNode.h>
0004
0005 #include <trackbase/TrkrClusterHitAssoc.h>
0006
0007 #include <map>
0008 #include <ostream>
0009 #include <string>
0010 #include <utility>
0011
0012 using MyNode_t = PHIODataNode<TrkrClusterHitAssoc>;
0013
0014 DumpTrkrClusterHitAssoc::DumpTrkrClusterHitAssoc(const std::string &NodeName)
0015 : DumpObject(NodeName)
0016 {
0017 return;
0018 }
0019
0020 int DumpTrkrClusterHitAssoc::process_Node(PHNode *myNode)
0021 {
0022 TrkrClusterHitAssoc *trkrclusterhitassoc = nullptr;
0023 MyNode_t *thisNode = static_cast<MyNode_t *>(myNode);
0024 if (thisNode)
0025 {
0026 trkrclusterhitassoc = thisNode->getData();
0027 }
0028 if (trkrclusterhitassoc)
0029 {
0030 trkrclusterhitassoc->identify(*fout);
0031 }
0032 return 0;
0033 }