Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:21:14

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef SPINDBNODE_H
0004 #define SPINDBNODE_H
0005 
0006 #include <fun4all/SubsysReco.h>
0007 
0008 #include <string>
0009 
0010 class PHCompositeNode;
0011 
0012 class SpinDBNode : public SubsysReco
0013 {
0014  public:
0015   SpinDBNode(const std::string &name = "SpinDBNode");
0016 
0017   ~SpinDBNode() override = default;
0018   int InitRun(PHCompositeNode *topNode) override;
0019 
0020  private:
0021 };
0022 
0023 #endif  // SPINDBNODE_H