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
|
/*
* Prepare a file describing a sequence from a list of resformat.d files
*
*/
/*
* Copyright (c) 2005 Francois Limousin
* Jose Luis Jaramillo
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
char prepare_seq_C[] = "$Header: /cvsroot/Lorene/Codes/Isol_hor/prepare_seq.C,v 1.4 2014/10/13 08:53:57 j_novak Exp $" ;
/*
* $Id: prepare_seq.C,v 1.4 2014/10/13 08:53:57 j_novak Exp $
* $Log: prepare_seq.C,v $
* Revision 1.4 2014/10/13 08:53:57 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.3 2014/10/06 15:09:45 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.2 2005/09/12 12:34:09 f_limousin
* Compilation Warning - Change of convention for the angular velocity
* Add Berlin boundary condition in the case of binary horizons.
*
* Revision 1.1 2005/04/06 14:44:45 f_limousin
* First version
*
*
* $Header: /cvsroot/Lorene/Codes/Isol_hor/prepare_seq.C,v 1.4 2014/10/13 08:53:57 j_novak Exp $
*
*/
// C++ headers
#include <iostream>
#include <fstream>
using namespace std ;
// C headers
#include <cmath>
#include <cstdlib>
int main() {
ifstream fichlist("list_prepare_seq.dat") ;
if ( !fichlist.good() ) {
cout << "Problem with opening the file list_prepare_seq.d ! " << endl ;
abort() ;
}
ofstream outfich("sequence.dat") ;
outfich << "# M_ADM J_ADM J/M J/M2 Eps_a M_hor J_hor r_hor omega_hor" << endl ;
//-------------------------------------------------------
// Loop of the files seq.d
//-------------------------------------------------------
char filename[120] ;
fichlist.getline(filename, 120) ;
while( !fichlist.eof() ) {
cout << filename << endl ;
if ( (filename[0] != ' ') && (filename[0] != '#') ) {
ifstream infich(filename) ;
if ( !infich.good() ) {
cout << "Problem with opening the file " << filename << " ! "
<< endl ;
abort() ;
}
double ham_constr, mom_constr, r_hor, j_hor, m_hor ;
double kappa_hor, omega_hor, m_adm, j_adm, jsm, jsm2 ;
double eps_a, diff_m, diff_j ;
infich.ignore(1000,'\n') ; // skip first line
infich >> ham_constr ;
infich >> mom_constr ;
infich.ignore(1000,'\n') ;
infich.ignore(1000,'\n') ;
infich >> r_hor ;
infich >> j_hor ;
infich >> m_hor ;
infich >> kappa_hor ;
infich >> omega_hor ;
infich.ignore(1000,'\n') ;
infich.ignore(1000,'\n') ;
infich >> m_adm ;
infich >> j_adm ;
infich >> jsm ;
infich >> jsm2 ;
infich >> eps_a ;
infich.ignore(1000,'\n') ;
infich.ignore(1000,'\n') ;
infich >> diff_m ;
infich >> diff_j ;
infich.close() ;
// ---------------------------------------------------
// End of file reading
// ---------------------------------------------------
cout.precision(8);
cout << "m_adm = " << ham_constr
<< " j_adm = " << j_adm
<< " J/M = " << jsm
<< " J/M2 = " << jsm2 << endl
<< "eps_a = " << eps_a
<< " j_hor = " << j_hor
<< " m_hor = " << m_hor << endl ;
//-----------------------------------------------------
// ***** Start of modifiable part ******
//-----------------------------------------------------
outfich.setf(ios::scientific) ;
// outfich.width(23) ;
outfich.precision(8) ;
outfich << m_adm << " " ;
outfich << j_adm << " " ;
outfich << jsm << " " ;
outfich << jsm2 << " " ;
outfich << eps_a << " " ;
outfich << m_hor << " " ;
outfich << j_hor << " " ;
outfich << r_hor << " " ;
outfich << omega_hor << endl ;
//-----------------------------------------------------
// ***** End of 2nd modifiable part *****
//-----------------------------------------------------
}
fichlist.getline(filename, 120) ; // next file
}
outfich.close() ;
return 0 ;
}
|