MINT2
PlotSet.h
Go to the documentation of this file.
1 #ifndef PLOTSET_HH
2 #define PLOTSET_HH
3 // author: Jonas Rademacker (Jonas.Rademacker@bristol.ac.uk)
4 // status: Mon 9 Feb 2009 19:18:00 GMT
5 
6 //#include <vector>
7 #include <string>
8 
9 #include "TObject.h"
10 //#include "TFile.h"
11 
12 #include "Mint/PolymorphVector.h"
13 
14 class PlotSet : public MINT::PolymorphVector<TObject*>{
15 
16  public:
18  : MINT::PolymorphVector<TObject*>(){}
19 
20  PlotSet(const PlotSet& other)
21  : MINT::PolymorphVector<TObject*>(other)
22  {}
23  /* beware!!!! this does not do
24  the memory management for
25  the plots, just passes
26  around a set of pointers!
27  */
28 
29  void save(const std::string& filename);
30 };
31 #endif
32 //
PlotSet()
Definition: PlotSet.h:17
PlotSet(const PlotSet &other)
Definition: PlotSet.h:20
void save(const std::string &filename)
Definition: PlotSet.cpp:6