LCFIVertex  0.7.2
InputImportance.h
1 #ifndef INPUTIMPORTANCE_H
2 #define INPUTIMPORTANCE_H
3 
4 #include "NeuralNetConfig.h"
5 #include "NeuralNet.h"
6 #include "NeuralNetDataSet.h"
7 
8 #include <vector>
9 
10 //namespace nnet added for the LCFI vertex package
11 namespace nnet
12 {
13 
14 class
15 #ifndef __CINT__
16 NEURALNETDLL
17 #endif
19 {
20 public:
21  std::vector<double> operator()(const NeuralNet &theNet,const NeuralNetDataSet &theData) const;
22 };
23 
24 }//namespace nnet
25 
26 #endif