00001 00002 // $Id: AltNeuralNetNcCcI.h,v 1.2 2004/11/08 23:22:10 gmieg Exp $ 00003 // 00004 // AltNeuralNetNcCcI.h 00005 // 00006 // -- Neural Net Input Class 00007 // 00008 // -- The Artificial Neural Net is used to classify neutrino events into 00009 // | 00010 // |-----> Neutral Current (NC) 00011 // |-----> Charged Current (CC) 00012 // 00013 // Costas Andreopoulos <C.V.Andreopoulos@rl.ac.uk> 00014 // CCLRC, Rutherford Appleton Laboratory 00015 // July 01, 2003 00017 00018 #ifndef _ALT_NEURAL_NET_NC_CC_I_H_ 00019 #define _ALT_NEURAL_NET_NC_CC_I_H_ 00020 00021 // This is a placeholder... 00022 // The pattern definitions from my NC/CC Neural Net analyses are not included yet 00023 // (see talk at the Sep2003 collab meeting) 00024 // 00025 // The first Neural Net to be added in the AltReco package is the net for 00026 // distinguishing between strips to be assigned into "track-like" or "shower-like" 00027 // formations. 00028 // Therefore, the first pattern definition in the AltReco package can be found in 00029 // the AltNeuralNetStripPatternI class 00030 00031 #include "AltNeuralNetI.h" 00032 00033 class AltNeuralNetNcCcI: public AltNeuralNetI 00034 { 00035 public: 00036 AltNeuralNetNcCcI(); 00037 AltNeuralNetNcCcI(const char * name, const char * title, int version = 1); 00038 AltNeuralNetNcCcI(const AltNeuralNetNcCcI & cneti); 00039 ~AltNeuralNetNcCcI(); 00040 00041 private: 00042 00043 ClassDef(AltNeuralNetNcCcI, 0) 00044 }; 00045 00046 #endif // _ALT_NEURAL_NET_NC_CC_I_H_
1.3.9.1