Garfield++ v1r0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
MediumPlastic.hh
Go to the documentation of this file.
1// Plastic medium
2
3#ifndef G_MEDIUM_PLASTIC_H
4#define G_MEDIUM_PLASTIC_H
5
6#include "Medium.hh"
7
8namespace Garfield {
9
10class MediumPlastic : public Medium {
11
12 public:
13 // Constructor
15 m_className = "MediumPlastic";
16 m_name = "Plastic";
17 }
18 // Destructor
20
21 void EnableDrift() {}
23};
24}
25
26#endif
std::string m_name
Definition: Medium.hh:291
std::string m_className
Definition: Medium.hh:284