#ifndef _QSIGEXF2EDATAHOLDER_
#define _QSIGEXF2EDATAHOLDER_
#include <iostream>
#include <cstdlib>
#include "Rtypes.h"
#include "QSigExDis.h"
#define DEBUG
#define DEBUG2
#include "debugger.h"
using std::cout;
using std::endl;
class TList;
class TString;
template <typename U> class QList;
class QSigExF2EDataHolder
{
public:
QSigExF2EDataHolder(){fNInstances++;}
QSigExF2EDataHolder(TList* aF2EList){
fNInstances++;
AddMapping(aF2EList);
}
Int_t AddMapping(TList* aF2EList);
Int_t AddFluxIndexing(const Char_t* cardfilename);
Int_t GetNMappings(){return fNEntries;};
Int_t GetNGroups(){return fNFluxes;}
Int_t GetAxesIndex(Int_t aMapping, Int_t aAxes){return fAxesIndex[aMapping][aAxes];};
Int_t GetNAxes(Int_t aMapping){return fNAxes[aMapping];};
Int_t GetTreeIndex(Int_t aMapping){return fTreeIndex[aMapping];};
QSigExDis* GetMapping(Int_t aMapping){return fFlux2Events[aMapping];};
virtual ~QSigExF2EDataHolder(){fNInstances--;}
private:
QSigExF2EDataHolder(const QSigExF2EDataHolder &);
void CheckRights();
static QSigExDis **fFlux2Events;
static TString** fAxesNames;
static TString* fFluxes;
static Int_t** fAxesIndex;
static Int_t fNTrees;
static Int_t fNEntries;
static Int_t *fNAxes;
static Int_t fNFluxes;
static Int_t *fTreeIndex;
static Int_t fNInstances;
ClassDef(QSigExF2EDataHolder,1)
};
#include "debugger.h"
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.