#ifndef HNTUPLEMAP_H
#define HNTUPLEMAP_H
#include "TObject.h"
#include "TFile.h"
#include "TNtuple.h"
#include "TString.h"
#include <map>
#include <string>
using namespace std;
class HNtupleMap : public TObject {
public:
TNtuple* ntuple;
TFile* file;
map<string, Int_t> c;
Float_t* a;
HNtupleMap();
~HNtupleMap();
void createMap(TString in, TString ntupleName);
void printMap();
Float_t& operator[](const std::string& val);
ClassDef(HNtupleMap,1)
};
#endif /*!HNtupleMap_H*/
Last change: Sat May 22 13:04:48 2010
Last generated: 2010-05-22 13:04
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.