File: waveform.cpp

package info (click to toggle)
ismrmrd 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,408 kB
  • sloc: cpp: 12,225; ansic: 2,449; xml: 453; python: 42; makefile: 15
file content (104 lines) | stat: -rw-r--r-- 2,237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
//
// Created by dch on 27/02/18.
//

#include <cstring>
#include "ismrmrd/waveform.h"
#include <algorithm>
#include <ismrmrd/ismrmrd.h>

ISMRMRD::Waveform::Waveform(uint16_t number_of_samples, uint16_t channels) {

    ismrmrd_init_waveform(this);
    this->head.channels = channels;
    this->head.number_of_samples = number_of_samples;
    this->head.waveform_id =0;
	this->data = (uint32_t*)malloc(this->head.channels*this->head.number_of_samples* sizeof(uint32_t));


}
size_t ISMRMRD::Waveform::size() const {
	return head.channels*head.number_of_samples;
}

uint32_t* ISMRMRD::Waveform::begin_data() {
	return data;
}

uint32_t* ISMRMRD::Waveform::end_data() {
	return data + this->size();
}

ISMRMRD::Waveform::Waveform() {
    ismrmrd_init_waveform(this);
}

ISMRMRD::Waveform::Waveform(const Waveform &other) {

	
	size_t datasize = other.size();
	if (datasize == 0)
		this->data = NULL;
	else {
		this->data = new uint32_t[datasize];
		memcpy(this->data, other.data, other.size() * sizeof(uint32_t));
	}

	this->head = other.head;
}

ISMRMRD::Waveform::Waveform(Waveform &&other) {
    this->data = other.data;
    other.data = NULL;
	this->head = other.head;

}

ISMRMRD::Waveform::~Waveform() {
	if (data != NULL) free(data);
    

}

ISMRMRD::Waveform & ISMRMRD::Waveform::operator=(Waveform &&other) {
	
	if (data != NULL) free(data);
    this->data = other.data;
    other.data = nullptr;
	this->head = other.head;
    return *this;
}

ISMRMRD::Waveform & ISMRMRD::Waveform::operator=(const Waveform &other) {
	
	if (this->data != NULL) free(this->data);
	
	size_t datasize = other.size();
	if (datasize == 0)
		this->data = NULL;
	else {
		this->data = (uint32_t*) malloc(sizeof(uint32_t)*datasize);
		memcpy(this->data, other.data, other.size() * sizeof(uint32_t));
	}


	this->head = other.head;
    return *this;
}

bool ISMRMRD::WaveformHeader::isFlagSet(const uint64_t val) {
    return ismrmrd_is_flag_set(flags, val);
};

void ISMRMRD::WaveformHeader::setFlag(const uint64_t val) {
    ismrmrd_set_flag(&flags, val);
};

void ISMRMRD::WaveformHeader::clearFlag(const uint64_t val) {
    ismrmrd_clear_flag(&flags, val);
};

void ISMRMRD::WaveformHeader::clearAllFlags() {
    ismrmrd_clear_all_flags(&flags);
};