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

- fixed issue with ambigous reference to long64

parent 4d55fe96
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ int main(int argc, char** argv ){
const SurfaceList& sL = surfMan.surfaceList() ;
// map of surfaces
std::map< long64, Surface* > surfMap ;
std::map< DD4hep::long64, Surface* > surfMap ;
for( SurfaceList::const_iterator it = sL.begin() ; it != sL.end() ; ++it ){
......@@ -104,7 +104,7 @@ int main(int argc, char** argv ){
SimTrackerHit* sHit = (SimTrackerHit*) col->getElementAt(i) ;
long64 id = sHit->getCellID0() ;
DD4hep::long64 id = sHit->getCellID0() ;
idDecoder.setValue( id ) ;
// std::cout << " simhit with cellid : " << idDecoder << std::endl ;
......
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