JEMRIS 2.9.2
open-source MRI simulations
Loading...
Searching...
No Matches
TrajectoryEmpty.h
Go to the documentation of this file.
1
9/*
10 * JEMRIS Copyright (C)
11 * 2006-2025 Tony Stoecker
12 * 2007-2018 Kaveh Vahedipour
13 * 2009-2019 Daniel Pflugfelder
14 *
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 */
30
31#ifndef TRAJECTORYEMPTY_H_
32#define TRAJECTORYEMPTY_H_
33
34#include "TrajectoryInterface.h"
35
40public:
42 virtual ~TrajectoryEmpty(){};
43
44 virtual void GetValueDerived(double time, double *value) {return;};
45
46 virtual void LoadFile(string filename) {return;};
47
48};
49
50#endif /* TRAJECTORYEMPTY_H_ */
Implementation of JEMRIS TrajectoryInterface.
The "do nothing"-strategy.
Definition TrajectoryEmpty.h:39
virtual void LoadFile(string filename)
load trajectory from file
Definition TrajectoryEmpty.h:46
virtual void GetValueDerived(double time, double *value)
retrieve value at given time-point
Definition TrajectoryEmpty.h:44
pure virtual base class for all Trajectories
Definition TrajectoryInterface.h:48

-- last change 03.01.2025 | Tony Stoecker | Imprint | Data Protection --