/usr/include/odinseq/odinpulse.h is in libodin-dev 1.8.5-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | /***************************************************************************
odinpulse.h - description
-------------------
begin : Tue Jun 4 2002
copyright : (C) 2002 by Thies Jochimsen
email : jochimse@cns.mpg.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef ODINPULSE_H
#define ODINPULSE_H
#include <odinpara/jdxfunction.h>
#include <odinpara/jdxfilter.h>
#include <odinseq/seqpuls.h>
class SeqSimAbstract; // forward declaration
class Sample; // forward declaration
#define _BOUNDARY_VALUE_ 0.005
#define _SETREFGAIN_ADIABATIC_INTERVAL_ 0.01
#define _SETREFGAIN_ADIABATIC_INCR_FACTOR_ 1.1
#define _SETREFGAIN_ITERATIONS_ 3
// Parameter values of this optimization parameter must be in range [0,1]
#define _TRAJ_OPTIMIZE_PARLABEL_ "FreeParameter"
//////////////////////////////////////////////////
/**
* @addtogroup odinseq_internals
* @{
*/
/**
*
* Wrapper class for trajectory functions.
*/
class JDXtrajectory : public JDXfunction, public StaticHandler<JDXtrajectory> {
public:
JDXtrajectory(const STD_string& jdxlabel="unnamedJDXtrajectory") : JDXfunction(trajFunc,jdxlabel) {}
JDXtrajectory(const JDXtrajectory& jt) : JDXfunction(jt) {}
JDXtrajectory& operator = (const JDXtrajectory& jt) {JDXfunction::operator = (jt); return *this;}
void init_trajectory(OdinPulse* pls=0) {if(allocated_function) allocated_function->init_trajectory(pls);}
const kspace_coord& calculate(float s) const;
const traj_info& get_traj_info() const;
static void init_static();
static void destroy_static();
};
//////////////////////////////////////////////////
/**
*
* Wrapper class for pulse shape functions.
*/
class JDXshape : public JDXfunction, public StaticHandler<JDXshape> {
public:
JDXshape(const STD_string& jdxlabel="unnamedJDXshape") : JDXfunction(shapeFunc,jdxlabel) {}
JDXshape(const JDXshape& js) : JDXfunction(js) {}
JDXshape& operator = (const JDXshape& js) {JDXfunction::operator = (js); return *this;}
void init_shape() {if(allocated_function) allocated_function->init_shape();}
STD_complex calculate(const kspace_coord& coord ) const;
STD_complex calculate(float s, float Tp) const;
const shape_info& get_shape_info() const;
farray get_excitation_mask(float fov, unsigned int size) const;
static void init_static();
static void destroy_static();
};
//////////////////////////////////////////////////
struct OdinPulseData; // forward declaration
/** @}
*/
//////////////////////////////////////////////////
/**
* @addtogroup odinseq
* @{
*/
/**
* \brief Advandced RF pulses
*
*
* This class represents an advanced RF pulse. The RF and gradient
* shape will be calculated according to a set of given parameters.
*/
class OdinPulse : public JcampDxBlock, public virtual SeqClass {
public:
/**
* Constructs an OdinPulse with the given label. If 'interactive' is set to 'true', the RF, gradient shape and
* pulse_gain will be recalculted each time a parameter has been changed
*/
OdinPulse(const STD_string& pulse_label="unnamedOdinPulse",bool interactive=false);
/**
* Constructs an OdinPulse which is a copy of 'pulse'
*/
OdinPulse(const OdinPulse& pulse);
virtual ~OdinPulse();
/**
* This assignment operator will make this OdinPulse become an exact copy of 'pulse'.
*/
OdinPulse& operator = (const OdinPulse& pulse);
/**
*
* Sets the pulse mode (dimensionality) of the pulse
*/
OdinPulse& set_dim_mode(funcMode dmode);
/**
*
* Returns the pulse mode (dimensionality) of the pulse
*/
funcMode get_dim_mode() const;
/**
*
* Returns the number of data points
*/
unsigned int get_size() const;
/**
*
* specifies number of data points
*/
OdinPulse& resize(unsigned int newsize);
/**
*
* Sets the duration of the pulse
*/
OdinPulse& set_Tp(double duration);
/**
*
* Returns the duration of the pulse
*/
double get_Tp() const;
/**
*
* Specifies whether to consider maximum gradient strength and
* slew-rate while calculating the trajectory.
*/
OdinPulse& set_consider_system_cond(bool flag);
/**
*
* Returns whether to consider maximum gradient strength and
* slew-rate while calculating the trajectory.
*/
bool get_consider_system_cond() const;
/**
*
* Specifies whether to consider Nyquist-theorem while sampling along
* the k-space trajectory.
*/
OdinPulse& set_consider_Nyquist_cond(bool flag);
/**
*
* Returns whether to consider Nyquist-theorem while sampling along
* the k-space trajectory.
*/
bool get_consider_Nyquist_cond() const;
/**
*
* Sets the spatial resolution if the pulse is calculated according
* to the small tip angle approximation, otherwise this has no effect.
*/
OdinPulse& set_spat_resolution(double sigma);
/**
*
* Sets whether minimum spatial resolution is used.
*/
OdinPulse& use_min_spat_resolution(bool flag);
/**
*
* Returns the spatial resolution
*/
double get_spat_resolution() const;
/**
*
* Sets the field of excitation, i.e. the spatial area where no aliasing occurs
*/
OdinPulse& set_field_of_excitation(double fox);
/**
*
* Returns the field of excitation
*/
double get_field_of_excitation() const;
/**
*
* Sets the spatial offset in the given direction
*/
OdinPulse& set_spatial_offset(direction direction, double offset);
/**
*
* Returns the spatial offset in the given direction
*/
double get_spatial_offset(direction direction) const;
/**
*
* Sets the nucleus for the pulse
*/
OdinPulse& set_nucleus(const STD_string& nucleusname);
/**
*
* Returns the nucleus for the pulse
*/
STD_string get_nucleus() const;
/**
*
* Sets the type of the pulse, this is necessary for calculating the pulse gain of
* adiabatic pulses and optimization of pulses.
*/
OdinPulse& set_pulse_type(pulseType type);
/**
*
* Returns the type of the pulse
*/
pulseType get_pulse_type() const;
/**
*
* Specifies the composite pulse to use.
* A composite pulse can be specified by a string
* of the form a1(x2) a2(x2) ... where a1,a2,...
* are the flipangles in degree and x1,x2,...
* are the axes, .e.g. X,-X,Y or -Y.
*/
OdinPulse& set_composite_pulse(const STD_string& cpstring);
/**
*
* Returns a 2dim array with the first index indicating the pulse in the composite pulse
* train and the second index selects the flipangle(=0) or pulse phase(=1) of the sub-pulse.
*/
farray get_composite_pulse_parameters() const;
/**
*
* Returns 'true' if the pulse is a composite pulse
*/
bool is_composite_pulse() const;
/**
*
* Returns the number of composite pulses
*/
unsigned int get_numof_composite_pulse() const;
/**
*
* Returns whether the pulse shape is adiabatic
*/
bool is_adiabatic() const;
/**
*
* Returns the relative center of the pulse,
* i.e. the point where the center of k-space is passed.
* The value will be in the range in the range [0,1].
*/
float get_rel_center() const;
/**
*
* Returns the pulse gain
*/
double get_pulse_gain() const;
/**
*
* Returns the correction factor for the IDEA flipangle
*/
float get_flipangle_corr_factor() const;
/**
*
* Sets the flip angle
*/
OdinPulse& set_flipangle(double angle);
/**
*
* Returns the flip angle
*/
double get_flipangle() const;
/**
*
* Generates the pulse
*/
OdinPulse& generate();
/**
*
* Calculates the pulse gain in comparison to a 90deg 1ms block-shaped pulse
*/
OdinPulse& set_pulse_gain();
/**
*
* Update all relations and recalculate pulse
*/
virtual OdinPulse& update();
/**
*
* Calculates the power deposition of the pulse
*/
float get_power_depos() const;
/**
*
* Specifies the pulse shape and its parameters by a string where the first
* element is the function name followed by the parameters in braces separated by commas
*/
OdinPulse& set_shape(const STD_string& shapeval);
/**
*
* Specifies the pulse trajectory and its parameters by a string where the first
* element is the function name followed by the parameters in braces separated by commas
*/
OdinPulse& set_trajectory(const STD_string& shapeval);
/**
*
* Specifies the pulse filter and its parameters by a string where the first
* element is the function name followed by the parameters in braces separated by commas
*/
OdinPulse& set_filter(const STD_string& shapeval);
/**
*
* Sets the value of the pulse shape parameter which has the label 'parameter_label' to 'value'
*/
OdinPulse& set_shape_parameter(const STD_string& parameter_label, const STD_string& value);
/**
*
* Sets the value of the pulse trajectory parameter which has the label 'parameter_label' to 'value'
*/
OdinPulse& set_trajectory_parameter(const STD_string& parameter_label, const STD_string& value);
/**
*
* Sets the value of the pulse filter parameter which has the label 'parameter_label' to 'value'
*/
OdinPulse& set_filter_parameter(const STD_string& parameter_label, const STD_string& value);
/**
*
* Returns the value of the pulse shape parameter which has the given label
*/
STD_string get_shape_parameter(const STD_string& parameter_label) const;
/**
*
* Returns the value of the pulse trajectory parameter which has the given label
*/
STD_string get_trajectory_parameter(const STD_string& parameter_label) const;
/**
*
* Returns the value of the pulse filter parameter which has the given label
*/
STD_string get_filter_parameter(const STD_string& parameter_label) const;
/**
*
* Returns the label of the current pulse shape
*/
STD_string get_shape() const;
/**
*
* Returns the label of the current pulse trajectory
*/
STD_string get_trajectory() const;
/**
*
* Returns the label of the current pulse filter
*/
STD_string get_filter() const;
/**
* Returns the gradient waveform for the specified channel
*/
const fvector& get_Grad(direction channel) const;
/**
*
* Returns the scaling factor for the gradient channels
*/
double get_G0() const;
/**
* Returns the complex RF waveform
*/
const cvector& get_B1() const;
/**
*
* Returns the scaling factor for the RF channels
*/
double get_B10() const;
/**
* Simulates the effect of the pulse using simulator 'sim'
* using virtual sample 'sample'.
*/
void simulate_pulse(SeqSimAbstract& sim, const Sample& sample) const;
/**
*
* This function writes the RF waveform to file in the native (binary)
* format of the current platform
*/
int write_rf_waveform (const STD_string& filename) const;
/**
*
* This function loads the RF waveform from file in the native (binary)
* format of the current platform
*/
int load_rf_waveform (const STD_string& filename);
// overloading virtual functions of JcampDxBlock
int load(const STD_string& filename);
int write(const STD_string& filename) const;
protected:
virtual void update_B10andPower();
OdinPulse& recalc_pulse();
double get_Tp_1pulse() const;
private:
int append_all_members();
static float ensure_unit_range(float x);
OdinPulse& make_composite_pulse();
static float gradient_system_max (const fvector& Gvec, float Gmax, float maxslew, float Tp);
static float max_kspace_step(const fvector& Gz,float gamma,float Tp,float G0);
static float max_kspace_step2(const fvector& Gx, const fvector& Gy, float gamma,float Tp,float G0);
OdinPulse& resize_noupdate(unsigned int newsize);
// this pointer holds all data of the pulse
OdinPulseData* data;
};
/** @}
*/
#endif
|