EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmRichRingSelectAnn.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmRichRingSelectAnn.h
1 
15 #ifndef CBM_RICH_RING_SELECT_ANN
16 #define CBM_RICH_RING_SELECT_ANN
17 
18 #include <string>
19 
20 class CbmRichRingLight;
22 class NNfunction;
23 class TMultiLayerPerceptron;
24 using namespace std;
25 
40 {
41 private:
42  std::string fAnnWeights;
43  TMultiLayerPerceptron* fNN;
45 
46 public:
51 
55  virtual ~CbmRichRingSelectAnn();
56 
60  virtual void Init();
61 
66  void DoSelect(
67  CbmRichRingLight* ring);
68 
73  void SetAnnWeights(const string& fileName){fAnnWeights = fileName;}
74 
75 private:
80 
84  CbmRichRingSelectAnn& operator=(const CbmRichRingSelectAnn&);
85 };
86 
87 #endif