#include <MCBriefPad.h>
Inheritance diagram for evd::MCBriefPad:

Public Member Functions | |
| MCBriefPad (const char *nm, const char *ti, double x1, double y1, double x2, double y2, const char *opt) | |
| ~MCBriefPad () | |
| void | Draw () |
Private Attributes | |
| evdb::View2D * | fView |
| Superimpose scale on 1D histo. | |
|
||||||||||||||||||||||||||||||||
|
Definition at line 20 of file MCBriefPad.cxx. References fView, and evd::DrawingPad::Pad(). 00023 : 00024 DrawingPad(nm, ti, x1, y1, x2, y2) 00025 { 00026 this->Pad()->cd(); 00027 00028 fView = new evdb::View2D(); 00029 }
|
|
|
Definition at line 33 of file MCBriefPad.cxx. References fView. 00034 {
00035 if (fView) { delete fView; fView = 0; }
00036 }
|
|
|
Definition at line 40 of file MCBriefPad.cxx. References evdb::View2D::Clear(), evdb::View2D::Draw(), fView, evd::SimulationDrawer::MCTruthShortText(), evd::DrawingPad::Pad(), and evd::DrawingPad::SimulationDraw(). Referenced by evd::XZYZProjectionsView::Draw(), and evd::XZYZProjectionsView::XZYZProjectionsView(). 00041 {
00042 fView->Clear();
00043 this->Pad()->Clear();
00044
00045 this->SimulationDraw()->MCTruthShortText(this->EventHandle(), fView);
00046
00047 fPad->cd();
00048 fView->Draw();
00049 }
|
|
|
Superimpose scale on 1D histo.
Definition at line 23 of file MCBriefPad.h. Referenced by Draw(), MCBriefPad(), and ~MCBriefPad(). |
1.3.9.1