TIMBER  beta
Tree Interface for Making Binned Events with RDataFrame
Collection.h
1 #ifndef _TIMBER_COLLECTION
2 #define _TIMBER_COLLECTION
3 #include <map>
4 #include <string>
5 #include <ROOT/RVec.hxx>
6 
7 using namespace ROOT::VecOps;
8 using namespace std;
9 
16 struct Collection {
17  map<string,int*> Int;
18  map<string,bool*> Bool;
19  map<string,RVec<float>*> RVecFloat;
20  map<string,RVec<int>*> RVecInt;
21 };
22 
23 #endif
map< string, RVec< int > * > RVecInt
Definition: Collection.h:20
C++ structure to store maps of the various types of objects in a collection. OUTDATED BY analyzer...
Definition: Collection.h:16
map< string, RVec< float > * > RVecFloat
Definition: Collection.h:19
map< string, int * > Int
Definition: Collection.h:17
map< string, bool * > Bool
Definition: Collection.h:18