Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-03-13 09:25:52

0001 // @(#)root/tmva $Id$
0002 // Author: Andreas Hoecker, Joerg Stelzer, Helge Voss, Kai Voss
0003 
0004 /**********************************************************************************
0005  * Project: TMVA - a Root-integrated toolkit for multivariate data analysis       *
0006  * Package: TMVA                                                                  *
0007  * Header : MethodCFMlpANN_def                                                    *
0008  *                                             *
0009  *                                                                                *
0010  * Description:                                                                   *
0011  *      Common definition for CFMlpANN method                                     *
0012  *                                                                                *
0013  * Authors (alphabetical):                                                        *
0014  *      Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland              *
0015  *      Xavier Prudent  <prudent@lapp.in2p3.fr>  - LAPP, France                   *
0016  *      Helge Voss      <Helge.Voss@cern.ch>     - MPI-K Heidelberg, Germany      *
0017  *      Kai Voss        <Kai.Voss@cern.ch>       - U. of Victoria, Canada         *
0018  *                                                                                *
0019  * Copyright (c) 2005:                                                            *
0020  *      CERN, Switzerland                                                         *
0021  *      U. of Victoria, Canada                                                    *
0022  *      MPI-K Heidelberg, Germany                                                 *
0023  *      LAPP, Annecy, France                                                      *
0024  *                                                                                *
0025  * Redistribution and use in source and binary forms, with or without             *
0026  * modification, are permitted according to the terms listed in LICENSE           *
0027  * (see tmva/doc/LICENSE)                                          *
0028  **********************************************************************************/
0029 
0030 // ------------- common definitions used in several modules --------------
0031 // recovered explicit array definitions from f2c override
0032 
0033 #ifndef ROOT_TMVA_MethodCFMlpANN_def
0034 #define ROOT_TMVA_MethodCFMlpANN_def
0035 
0036 namespace TMVA {
0037 
0038    const int  max_Events_  = 200000;
0039    const int  max_nLayers_ = 6;
0040    const int  max_nNodes_  = 200;
0041    const int  max_nVar_    = 200;
0042 
0043 }
0044 
0045 #endif