HeaderPad.h
Go to the documentation of this file.
1 ///
2 /// \file HeaderPad.h
3 /// \brief Drawing pad for time or charge histograms
4 /// \author messier@indiana.edu
5 /// \version $Id: HeaderPad.h,v 1.1.1.1 2010/11/10 19:44:54 p-novaart Exp $
6 ///
7 #ifndef EVD_HEADER_H
8 #define EVD_HEADER_H
10 namespace evdb { class View2D; }
11 class TH1F;
12 
13 namespace gar {
14 namespace evd {
15  class HeaderPad : public DrawingPad {
16  public:
17  HeaderPad(const char* nm,
18  const char* ti,
19  double x1,
20  double y1,
21  double x2,
22  double y2,
23  const char* opt);
24  ~HeaderPad();
25  void Draw(const char* opt="");
26 
27  private:
28  evdb::View2D* fView; ///< Collection of drawn objects
29  };
30 }
31 }
32 #endif
33 ////////////////////////////////////////////////////////////////////////
opt
Definition: train.py:196
LArSoft includes.
Definition: InfoTransfer.h:33
void Draw(const char *plot, const char *title)
Definition: gXSecComp.cxx:580
Base class for event display drawing pads.
Definition: DrawingPad.h:23
General GArSoft Utilities.
evdb::View2D * fView
Collection of drawn objects.
Definition: HeaderPad.h:28