#include <DetectorViewOption.h>
Inheritance diagram for DetectorViewOption:

Public Member Functions | |
| void | Update (const cfg::Config &c) |
Static Public Member Functions | |
| const DetectorViewOption & | Instance () |
Public Attributes | |
| int | fDrawMCTruthVectors |
| int | fDrawRawDigits |
Private Member Functions | |
| DetectorViewOption () | |
Static Private Attributes | |
| DetectorViewOption * | fInstance = 0 |
|
|
Definition at line 32 of file DetectorViewOption.cxx. References cfg::Observer::SetWatch(). Referenced by Instance(). 00033 {
00034 this->SetWatch("Detector View Display Options","test");
00035 }
|
|
|
Definition at line 16 of file DetectorViewOption.cxx. References DetectorViewOption(), and fInstance. Referenced by evd::DetectorView::DetectorView(). 00017 {
00018 if (fInstance==0) fInstance = new DetectorViewOption();
00019 return *fInstance;
00020 }
|
|
|
Implements cfg::Observer. Definition at line 24 of file DetectorViewOption.cxx. References fDrawMCTruthVectors, and fDrawRawDigits. 00025 {
00026 c("DrawMCTruthVectors"). Get(fDrawMCTruthVectors);
00027 c("DrawRawDigits"). Get(fDrawRawDigits);
00028 }
|
|
|
Definition at line 21 of file DetectorViewOption.h. Referenced by evd::DetectorView::Draw(), and Update(). |
|
|
Definition at line 22 of file DetectorViewOption.h. Referenced by Update(). |
|
|
Definition at line 12 of file DetectorViewOption.cxx. Referenced by Instance(). |
1.3.9.1