/usr/include/odinseq/seqtemplate.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  | /***************************************************************************
                          seqtemplate.h  -  description
                             -------------------
    begin                : Mon Tue 23 2005
    copyright            : (C) 2001 by Thies H. 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 SEQTEMPLATE_H
#define SEQTEMPLATE_H
#include <odinseq/seqlist.h>
/**
  * @addtogroup odinseq
  * @{
  */
struct SeqFieldMapPars; // forward declaration
struct SeqFieldMapObjects; // forward declaration
/**
  * \brief Multi-echo module for field-map pre-scan
  *
  * In order to acquire a field-map together with the actual scan, this
  * sequence module employs an EPI-like readout where each shot acquires
  * an even number of alternating echoes (each with a different TE)
  * separately for each line in k-space.
  *
  */
class SeqFieldMap : public SeqObjList {
  // Disable copying
  SeqFieldMap(const SeqFieldMap& sfm) {}
  SeqFieldMap& operator = (const SeqFieldMap& sfm) {return *this;}
  void alloc_data();
  SeqFieldMapPars* pars; 
  SeqFieldMapObjects* objs;
 public:
/**
  * Constructs a field-map scan
  */
  SeqFieldMap() : pars(0), objs(0) {}
  ~SeqFieldMap();
/**
  * Initialize field-map scan with default values, sequence objects are prefixed by 'objlabel'.
  * This function is usually called in the sequence initialization step.
  */
  void init(const STD_string& objlabel);
/**
  * Builds the field-map scan using bandwidth 'sweepwidth' with oversampling factor 'os_factor', an extra preparation 'prep' prior to each excitation and minimum relaxation delay 'min_relaxdelay'.
  * This function is usually called in the sequence building step.
  */
  void build_seq(double sweepwidth, float os_factor=1.0, const SeqObjList& prep=SeqObjList(), double min_relaxdelay=0.0);
/**
  * Returns block of local parameters
  */
  JcampDxBlock& get_parblock();
};
/** @}
  */
#endif
 |