| 158 | } |
| 159 | |
| 160 | WireProfile::Ptr WireProfile::create_2D() { |
| 161 | MatrixFr loop(2, 2); |
| 162 | loop << -1, 0, 1, 0; |
| 163 | Ptr r = Ptr(new WireProfile()); |
| 164 | r->initialize(loop); |
| 165 | return r; |
| 166 | } |
| 167 | |
| 168 | void WireProfile::initialize(const MatrixFr& loop) { |
| 169 | m_loop = loop; |
nothing calls this directly
no test coverage detected