Skip to content
Snippets Groups Projects

Removed printouts from GeoModelKernel/GeoVolumeTagCatalog.h

Merged Vakhtang Tsulaia requested to merge (removed):master-printouts into master
1 file
+ 0
3
Compare changes
  • Side-by-side
  • Inline
@@ -11,13 +11,10 @@ class GeoVolumeTagCatalog {
public:
void addTaggedVolume(std::string category, std::string tag, GeoVPhysVol* v)
{
std::cout << "adding volume "<< v->getLogVol()->getName()<<" to category "<<category<<" with tag "<<tag<<std::endl;
theTags[category][tag]=v;
}
GeoVPhysVol* getTaggedVolume(std::string category, std::string tag)
{
std::cout << "getting volume "<< " with tag "<<tag<<" from category "<<category<<std::endl;
std::cout<<" getting volume "<<tag<<" pointer "<<theTags[category][tag]<<std::endl;
return theTags[category][tag];
}
Loading