GeFiCa
Germanium detector Field Calculator
Segmented.h
Go to the documentation of this file.
1 #ifndef GeFiCa_Segmented
2 #define GeFiCa_Segmented
3 
4 #include "Detector.h"
5 
6 namespace GeFiCa { class Segmented; }
7 
12 {
13  public:
14  double Radius;
15  double BoreR;
16  size_t Nphi;
17  size_t Nz;
18  size_t SegmentId;
19 
20  Segmented(const char *name="sip",
21  const char *title="segmented detector");
22  void CheckConfigurations();
23  void Draw(Option_t* option="");
25 };
26 #endif
27 
size_t Nphi
total number of segments in phi
Definition: Segmented.h:16
double Radius
radius of the crystal
Definition: Segmented.h:14
void Draw(Option_t *option="")
Definition: Segmented.cc:51
size_t SegmentId
segment Id in [0, Nphi*Nz]
Definition: Segmented.h:18
Configuration of segmented true coaxial detectors.
Definition: Segmented.h:11
Detector & crystal properties.
Definition: Detector.h:32
double BoreR
radius of the bore hole
Definition: Segmented.h:15
ClassDef(Segmented, 1)
void CheckConfigurations()
Definition: Segmented.cc:11
size_t Nz
total number of segments in z
Definition: Segmented.h:17
The only namespace in GeFiCa.
Definition: Detector.h:6
Segmented(const char *name="sip", const char *title="segmented detector")
Definition: Segmented.cc:5