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