HOPS
HOPS class reference
MHO_PyFringeFitterInstance.hh
Go to the documentation of this file.
1 #ifndef MHO_PyFringeFitterInstance_HH__
2 #define MHO_PyFringeFitterInstance_HH__
3 
4 #include "MHO_Operator.hh"
5 
10 
11 #include <pybind11/numpy.h> //this is important to have for std::complex<T> support!
12 #include <pybind11/pybind11.h>
13 namespace py = pybind11;
14 
15 namespace hops
16 {
17 
18 /*
19  *@file MHO_PyFringeFitterInstance.hh
20  *@class MHO_PyFringeFitterInstance
21  *@author J. Barrett - barrettj@mit.edu
22  *@date Tue Sep 19 16:26:35 2023 -0400
23  *@brief Container class which provides an interface to a fringe fitter instance
24  */
25 
27 {
28  public:
31 
32  // void SetParameterStore(MHO_ParameterStore* pstore){fParameterStore = pstore;};
33  // void SetContainerStore(MHO_ContainerStore* cstore){fContainerStore = cstore;};
34  //
35  // void SetModuleName(std::string module_name){fModuleName = module_name;}
36  // void SetFunctionName(std::string function_name){fFunctionName = function_name;}
37 
38  private:
39  // bool fInitialized;
40  // std::string fModuleName;
41  // std::string fFunctionName;
42  //
43  // MHO_ContainerStore* fContainerStore;
44  // MHO_ParameterStore* fParameterStore;
45  //
46  // MHO_PyParameterStoreInterface* fParameterInterface;
47  // MHO_PyContainerStoreInterface* fContainerInterface;
48 };
49 
50 } // namespace hops
51 
52 #endif
Definition: MHO_PyFringeFitterInstance.hh:27
virtual ~MHO_PyFringeFitterInstance()
Definition: MHO_PyFringeFitterInstance.hh:30
MHO_PyFringeFitterInstance()
Definition: MHO_PyFringeFitterInstance.hh:29
Definition: MHO_ChannelLabeler.hh:17