/usr/include/odinseq/seqtrigg.h is in libodin-dev 1.8.8-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 | /***************************************************************************
seqtrigg.h - description
-------------------
begin : Tue Aug 13 2002
copyright : (C) 2000-2014 by Thies H. Jochimsen
email : thies@jochimsen.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 SEQTRIGG_H
#define SEQTRIGG_H
#include <odinseq/seqobj.h>
#include <odinseq/seqdriver.h>
//////////////////////////////////////////////////////////////////////
/**
* @ingroup odinseq_internals
* The base class for platform specific drivers of external triggers
*/
class SeqTriggerDriver : public SeqDriverBase {
public:
SeqTriggerDriver() {}
virtual ~SeqTriggerDriver() {}
virtual double get_postduration() const = 0;
virtual bool prep_exttrigger(double duration) = 0;
virtual bool prep_halttrigger() = 0;
virtual bool prep_snaptrigger(const STD_string& snapshot_fname) = 0;
virtual bool prep_resettrigger() = 0;
virtual void event(eventContext& context, double start) const = 0;
virtual STD_string get_program(programContext& context) const = 0;
virtual SeqTriggerDriver* clone_driver() const = 0;
};
//////////////////////////////////////////////////////////////////////
/**
* @addtogroup odinseq
* @{
*/
/**
*
* \brief Output trigger
*
* Insert triggers for external devices into the sequence.
*/
class SeqTrigger : public SeqObjBase {
public:
/**
* Constructs a trigger labeled 'object_label' with the following properties:
* - duration: The duration of the trigger pulse
*/
SeqTrigger(const STD_string& object_label, double duration);
/**
* Default Constructor
*/
SeqTrigger(const STD_string& object_label = "unnamedSeqTrigger");
/**
* Constructs a trigger which is a copy of 'st'
*/
SeqTrigger(const SeqTrigger& st) {SeqTrigger::operator = (st);}
/**
* This assignment operator will make this object become an exact copy of 'st'.
*/
SeqTrigger& operator = (const SeqTrigger& st);
// overloading virtual function from SeqTreeObj
STD_string get_program(programContext& context) const;
double get_duration() const;
unsigned int event(eventContext& context) const;
private:
// overwriting virtual functions from SeqClass
bool prep();
mutable SeqDriverInterface<SeqTriggerDriver> triggdriver;
double triggdur;
};
//////////////////////////////////////////////////////////////////////
/**
*
* \brief Input trigger
*
* Halt sequence until an input trigger is received (e.g. cardiac gating).
*/
class SeqHalt : public SeqObjBase {
public:
/**
* Constructs a trigger labeled 'object_label'
*/
SeqHalt(const STD_string& object_label = "unnamedSeqHalt");
/**
* Constructs a trigger which is a copy of 'sh'
*/
SeqHalt(const SeqHalt& sh) {SeqHalt::operator = (sh);}
/**
* This assignment operator will make this object become an exact copy of 'sh'.
*/
SeqHalt& operator = (const SeqHalt& sh);
// overloading virtual function from SeqTreeObj
STD_string get_program(programContext& context) const;
double get_duration() const;
unsigned int event(eventContext& context) const;
private:
// overwriting virtual functions from SeqClass
bool prep();
mutable SeqDriverInterface<SeqTriggerDriver> triggdriver;
};
//////////////////////////////////////////////////////////////////////
/**
*
* \brief Magnetization snapshot
*
* This class is used to trigger a snapshot of the current magnetization
* during simulation of the sequence.
*/
class SeqSnapshot : public SeqObjBase {
public:
/**
* Constructs a trigger labeled 'object_label' with the following properties:
* - snapshot_fname: The file name where the magnetization will be stored consecutively in float format.
*/
SeqSnapshot(const STD_string& object_label, const STD_string& snapshot_fname);
/**
* Default Constructor
*/
SeqSnapshot(const STD_string& object_label = "unnamedSeqSnapshot");
/**
* Constructs a snapshot trigger which is a copy of 'ss'
*/
SeqSnapshot(const SeqSnapshot& ss) {SeqSnapshot::operator = (ss);}
/**
* This assignment operator will make this object become an exact copy of 'ss'.
*/
SeqSnapshot& operator = (const SeqSnapshot& ss);
// overloading virtual function from SeqTreeObj
double get_duration() const {return 0.0;}
unsigned int event(eventContext& context) const;
private:
// overwriting virtual functions from SeqClass
bool prep();
STD_string magn_fname;
mutable SeqDriverInterface<SeqTriggerDriver> triggdriver;
};
//////////////////////////////////////////////////////////////////////
/**
*
* \brief Magnetization reset
*
* This class is used to reset the current magnetization to its initial equilibrium state
* during simulation of the sequence.
*/
class SeqMagnReset : public SeqObjBase {
public:
/**
* Constructs a trigger labeled 'object_label'
*/
SeqMagnReset(const STD_string& object_label = "unnamedSeqMagnReset");
/**
* Constructs a snapshot trigger which is a copy of 'smr'
*/
SeqMagnReset(const SeqMagnReset& smr) {SeqMagnReset::operator = (smr);}
/**
* This assignment operator will make this object become an exact copy of 'smr'.
*/
SeqMagnReset& operator = (const SeqMagnReset& smr);
// overloading virtual function from SeqTreeObj
double get_duration() const {return 0.0;}
unsigned int event(eventContext& context) const;
private:
// overwriting virtual functions from SeqClass
bool prep();
mutable SeqDriverInterface<SeqTriggerDriver> triggdriver;
};
/** @}
*/
#endif
|