| Report problems to ATLAS LXR Team (with time and IP address indicated) |
|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
||||
|
||||||
| Links to LXR source navigation pages for stable releases | [ 12.*.* ] [ 13.*.* ] [ 14.*.* ] [ 15.*.* ] | |||||
001 #include "GridFactory.h" 002 003 #include "EMGrid.h" 004 #include "HADGrid.h" 005 006 GridFactory::~GridFactory(void) 007 { 008 } 009 010 IGrid* GridFactory::createGrid(TTPosition::eDetectorType eDetType) { 011 switch(eDetType) { 012 case TTPosition::EM: 013 return new EMGrid(); 014 break; 015 case TTPosition::HAD: 016 return new HADGrid(); 017 break; 018 019 default: 020 return new EMGrid(); 021 } 022 }
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems | |
| This page was automatically generated by the LXR engine. |
|