123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
-
-
-
-
-
-
- #include "AEMSurvey.h"
-
- namespace Lemma {
-
-
-
- std::ostream &operator<<(std::ostream &stream, const AEMSurvey &ob) {
-
- stream << *(LemmaObject*)(&ob);
-
- return stream;
- }
-
-
-
-
-
-
-
-
- AEMSurvey::AEMSurvey (const std::string& name) : LemmaObject(name) {
-
- }
-
-
-
-
-
-
-
- AEMSurvey* AEMSurvey::New() {
- AEMSurvey* Obj = new AEMSurvey("AEMSurvey");
- Obj->AttachTo(Obj);
- return Obj;
- }
-
-
-
-
-
-
- AEMSurvey::~AEMSurvey () {
-
- for (unsigned int isc=0; isc<Sources.size(); ++isc) Sources[isc]->Delete();
-
- }
-
-
-
-
-
-
- void AEMSurvey::Delete() {
- this->DetachFrom(this);
- }
-
-
-
-
-
-
- void AEMSurvey::Release() {
- delete this;
- }
-
-
-
-
-
- DipoleSource* AEMSurvey::GetSource ( const int& isource ) {
- return Sources[isource] ;
- }
-
-
-
-
-
- VectorXr AEMSurvey::GetFrequencies ( ) {
- return Freqs;
- }
-
-
-
-
-
-
- int AEMSurvey::GetNumberOfSources ( ) {
- return static_cast<int>(Sources.size());
- }
-
-
- }
|