1 #include <unordered_map>
3 #include "application/gui/DetectorHit.h"
6 std::string DetectorHit::hitTypeNames[DetectorHit::kHitTypeN] = {
"Full",
"Transparent",
"Color coded",
7 "Color coded and scaled",
"Point"};
9 DetectorHit::DetectorHit(std::string name) : _name(name), _threshold(0), _type(kOpacityHit), _color(kRed) {
11 std::string fullname = name;
14 _EEList =
new TEveElementList(fullname.c_str());
18 DetectorHit::~DetectorHit() { _EGSMap.clear(); }