GeFiCa
Germanium detector Field Calculator
R.h
Go to the documentation of this file.
1 #ifndef GeFiCa_R
2 #define GeFiCa_R
3 
4 #include "Grid.h"
5 namespace GeFiCa { class R; }
9 class GeFiCa::R : public Grid
10 {
11  public:
12  R(size_t n1=101) :
13  Grid(n1) { fName="r"; fTitle="1D spherical coordinate"; }
14  void SetupWith(Detector &detector);
15  void SolveAnalytically();
16  double GetC();
17  protected:
18  virtual void OverRelaxAt(size_t idx);
19  ClassDef(R,1);
20 };
21 #endif
22 
double GetC()
Definition: R.cc:53
Data structure of a electric field grid.
Definition: Grid.h:50
void SolveAnalytically()
Definition: R.cc:38
1D spherical coordinate.
Definition: R.h:9
virtual void OverRelaxAt(size_t idx)
Over relax potential Vp[.
Definition: R.cc:69
void SetupWith(Detector &detector)
Fix potentials on boundaries based on.
Definition: R.cc:6
Detector & crystal properties.
Definition: Detector.h:32
R(size_t n1=101)
Definition: R.h:12
The only namespace in GeFiCa.
Definition: Detector.h:6
ClassDef(R, 1)