123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
-
-
-
-
-
-
- #include "DCIPElectrode.h"
-
- namespace Lemma {
-
-
-
-
-
- std::ostream &operator << (std::ostream &stream, const DCIPElectrode &ob) {
- stream << ob.Serialize() << "\n";
- return stream;
- }
-
-
-
-
-
-
-
-
- DCIPElectrode::DCIPElectrode (const ctor_key& key) :
- LemmaObject(key), Node_ID(-1), Label(std::string("None")) {
-
- }
-
-
-
-
-
-
- DCIPElectrode::DCIPElectrode (const YAML::Node& node, const ctor_key& key) : LemmaObject(node, key) {
- if (node.Tag() != DCIPElectrode::CName) {
- throw std::runtime_error("In DCIPElectrode(node), node is of wrong type");
- }
- this->Location = node["Location"].as<Vector3r>();
- this->Node_ID = node["Node_ID"].as<int>();
- this->Label = node["Label"].as<std::string>();
- }
-
-
-
-
-
-
- std::shared_ptr<DCIPElectrode> DCIPElectrode::NewSP() {
- return std::make_shared<DCIPElectrode>( ctor_key() );
- }
-
-
-
-
-
-
- DCIPElectrode::~DCIPElectrode () {
-
- }
-
-
-
-
-
- YAML::Node DCIPElectrode::Serialize ( ) const {
- YAML::Node node = LemmaObject::Serialize();
- node.SetTag( this->GetName() );
-
- node["Location"] = Location;
- node["Node_ID"] = Node_ID;
- node["Label"] = Label;
- return node;
- }
-
-
-
-
-
- std::shared_ptr<DCIPElectrode> DCIPElectrode::DeSerialize ( const YAML::Node& node ) {
- if ( node.Tag() != DCIPElectrode::CName ) {
- throw DeSerializeTypeMismatch( DCIPElectrode::CName, node.Tag());
- }
- return std::make_shared< DCIPElectrode > ( node, ctor_key() );
- }
-
-
-
-
-
- void DCIPElectrode::SetLocation ( const Vector3r& loc ) {
- Location = loc;
- return ;
- }
-
-
-
-
-
-
-
- void DCIPElectrode::SetLabel ( const std::string& inLabel ) {
- Label = inLabel;
- return ;
- }
-
-
-
-
-
-
- std::string DCIPElectrode::GetLabel ( ) {
- return Label;
- }
-
-
- }
|