forked from JeffersonLab/EVe_HallC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTWire3D.h
35 lines (28 loc) · 753 Bytes
/
TWire3D.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//*************************************************************************
// TWire3D.cxx - 4/14/2008
//
// by miham
//
// This class is used to create and handle one 3D wire. We use these wires in
// class MWDChamber3D.cxx
//
//
//*************************************************************************
#ifndef ROOT_TWire3D
#define ROOT_TWire3D
#include "TGeoTube.h"
#include "TGeoEltu.h"
#include "TGeoVolume.h"
#include "TGeoManager.h"
#include "TGeoMatrix.h"
#include "TColor.h"
class TWire3D
{
public:
TWire3D(double angle, double y1, double z1, double y2, double z2,double radius, TGeoVolume *WirePlane, int wirenum);
virtual ~TWire3D();
TGeoVolume *wire;
TGeoEltu* Wiretube;
TGeoCombiTrans* Wirecomb;
};
#endif