FairRoot/PandaRoot
Classes | Macros | Typedefs | Enumerations
PndLVQTrain.h File Reference
#include "PndMvaTrainer.h"
#include "PndMvaCluster.h"

Go to the source code of this file.

Classes

class  PndLVQTrain
 Interface definition for LVQ trainers. More...
 

Macros

#define DEBUG_LVQ_TRAIN   0
 

Typedefs

typedef enum ProtoInitType ProtoInitType
 How to initialize LVQ code books. More...
 

Enumerations

enum  ProtoInitType { RAND_FROM_DATA = 0, CCM_PR = 1, KMEANS_PR = 10, FILE_PR = 20 }
 How to initialize LVQ code books. More...
 

Macro Definition Documentation

#define DEBUG_LVQ_TRAIN   0

Definition at line 21 of file PndLVQTrain.h.

Typedef Documentation

How to initialize LVQ code books.

Enumeration Type Documentation

How to initialize LVQ code books.

Enumerator
RAND_FROM_DATA 
CCM_PR 
KMEANS_PR 
FILE_PR 

Definition at line 25 of file PndLVQTrain.h.

25  {
26  RAND_FROM_DATA = 0, // Select randomly from data vector.
27  CCM_PR = 1, // Random init around Class Conditional Mean.
28  KMEANS_PR = 10, // Init using K-Means clustering.
29  FILE_PR = 20 // Read pre-init from file.
ProtoInitType
How to initialize LVQ code books.
Definition: PndLVQTrain.h:25