Public Methods | |
GetBackCells (localCellCollection &unusedCells) | |
~GetBackCells () | |
void | operator() (IAssociationManager *) |
void | operator() (IAssociationManager &a) |
Private Attributes | |
localCellCollection & | m_unusedCells |
|
Definition at line 101 of file SharedConeStrategy.h. References Atlfast::localCellCollection, and m_unusedCells.
00101 : m_unusedCells(unusedCells){} |
|
Definition at line 102 of file SharedConeStrategy.h.
00102 {} |
|
Definition at line 132 of file SharedConeStrategy.cxx. References Atlfast::localCellCollection, and m_unusedCells. Referenced by operator()().
00132 { 00133 localCellCollection assCells = a->ikinematics(); 00134 // std::transform(assCells.begin(), 00135 // assCells.end(), 00136 // std::back_inserter(m_unusedCells), 00137 // CastAwayConst 00138 // ); 00139 std::copy(assCells.begin(), 00140 assCells.end(), 00141 std::back_inserter(m_unusedCells), 00142 ); 00143 //delete(a); JPC: SHOULD I DELETE THIS????????? 00144 return; 00145 } |
|
Definition at line 104 of file SharedConeStrategy.h. References operator()().
00104 { return this->operator() ( &a) ; } |
|
Definition at line 99 of file SharedConeStrategy.h. Referenced by GetBackCells(), and operator()(). |