Skip to content
Snippets Groups Projects
Commit d85269fd authored by Frank Gaede's avatar Frank Gaede
Browse files

- added BEAMPIPE and COIL to DetType

parent b4ac80e0
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,10 @@ namespace DD4hep {
ELECTROMAGNETIC = 1 << 11,
HADRONIC = 1 << 12,
MUON = 1 << 13,
SUPPORT = 1 << 14
} ;
SUPPORT = 1 << 14,
BEAMPIPE = 1 << 15,
COIL = 1 << 16
} ;
/// default c'tor
......@@ -110,6 +112,8 @@ namespace DD4hep {
if( t.is( DetType::HADRONIC ) ) os << "HADRONIC, " ;
if( t.is( DetType::MUON ) ) os << "MUON, " ;
if( t.is( DetType::SUPPORT ) ) os << "SUPPORT, " ;
if( t.is( DetType::BEAMPIPE ) ) os << "BEAMPIPE, " ;
if( t.is( DetType::COIL ) ) os << "COIL, " ;
return os ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment