File indexing completed on 2025-01-18 10:01:39
0001
0002
0003
0004
0005 #ifndef _SimpleClusterFactory_h_
0006 #define _SimpleClusterFactory_h_
0007
0008 #include <JANA/JFactoryT.h>
0009
0010 #include "Cluster.h"
0011
0012 class SimpleClusterFactory : public JFactoryT<Cluster> {
0013
0014
0015
0016 public:
0017 void Init() override;
0018 void ChangeRun(const std::shared_ptr<const JEvent> &event) override;
0019 void Process(const std::shared_ptr<const JEvent> &event) override;
0020
0021 };
0022
0023 #endif