Garfield 0.3
Toolkit for the detailed simulation of particle detectors based on ionization measurement in gases and semiconductors
Loading...
Searching...
No Matches
MediumPlastic.hh
Go to the documentation of this file.
1#ifndef G_MEDIUM_PLASTIC_H
2#define G_MEDIUM_PLASTIC_H
3
4#include "Garfield/Medium.hh"
5
6namespace Garfield {
7
9
10class MediumPlastic : public Medium {
11 public:
15 MediumPlastic(const double eps) : Medium() {
16 m_className = "MediumPlastic";
17 m_name = "Plastic";
18 if (eps > 1.) m_epsilon = eps;
19 }
20
21 virtual ~MediumPlastic() {}
22
23 void EnableDrift(const bool /*on*/) override {}
24 void EnablePrimaryIonisation(const bool /*on*/) override {}
25};
26} // namespace Garfield
27
28#endif
void EnablePrimaryIonisation(const bool) override
MediumPlastic(const double eps)
Constructor from dielectric constant.
virtual ~MediumPlastic()
Destructor.
MediumPlastic()
Default constructor.
void EnableDrift(const bool) override