Belle II Software  release-05-01-25
DisplayDrawingArea.cc
1 //-----------------------------------------------------------------------------
2 // $Id$
3 //-----------------------------------------------------------------------------
4 // Filename : DisplayDrawingArea.cc
5 // Section : TRG CDC
6 // Owner : Yoshihito Iwasaki
7 // Email : yoshihito.iwasaki@kek.jp
8 //-----------------------------------------------------------------------------
9 // Description : A class to display CDC trigger objects.
10 //-----------------------------------------------------------------------------
11 // $Log$
12 //-----------------------------------------------------------------------------
13 
14 #ifdef TRGCDC_DISPLAY
15 
16 #define TRGCDC_SHORT_NAMES
17 
18 #include <iostream>
19 #include <pangomm/init.h>
20 #include "trg/cdc/DisplayDrawingAreaRphi.h"
21 
22 using namespace std;
23 
24 namespace Belle2 {
30  TRGCDCDisplayDrawingArea::TRGCDCDisplayDrawingArea(TRGCDCDisplay& w,
31  int size,
32  double outerR)
33  : _w(w),
34  _scale(double(size) / outerR / 2),
35  _axial(true),
36  _stereo(false),
37  _wireName(false),
38  _oldCDC(false)
39  {
40  }
41 
42  TRGCDCDisplayDrawingArea::~TRGCDCDisplayDrawingArea()
43  {
44  }
45 
47 } // namespace Belle2
48 
49 #endif
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19