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
|
// BEGIN LICENSE BLOCK
/*
Copyright (c) 2009 , UT-Battelle, LLC
All rights reserved
[PsimagLite, Version 1.0.0]
*********************************************************
THE SOFTWARE IS SUPPLIED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED.
Please see full open source license included in file LICENSE.
*********************************************************
*/
// END LICENSE BLOCK
#include "ContinuedFraction.h"
#include "Io/IoSimple.h"
#include "TridiagonalMatrix.h"
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <string>
using namespace PsimagLite;
typedef double RealType;
typedef TridiagonalMatrix<RealType> TridiagonalMatrixType;
typedef ContinuedFraction<TridiagonalMatrixType> ContinuedFractionType;
void usage(const char* progName)
{
std::cerr << "Usage: " << progName << " -f file -b omega1";
std::cerr << " -e omega2 -s omegaStep -d delta\n";
std::cerr << "Conditions: omega1<omega2 omegaStep>0 delta>0\n";
}
int main(int argc, char* argv[])
{
int opt = 0;
String file = "";
RealType wbegin = 0;
RealType wend = 0;
RealType wstep = 0;
RealType delta = 0;
while ((opt = getopt(argc, argv, "f:b:e:s:d:")) != -1) {
switch (opt) {
case 'f':
file = optarg;
break;
case 'b':
wbegin = atof(optarg);
break;
case 'e':
wend = atof(optarg);
break;
case 's':
wstep = atof(optarg);
break;
case 'd':
delta = atof(optarg);
break;
default:
usage(argv[0]);
return 1;
}
}
// sanity checks:
if (file == "" || wbegin >= wend || wstep <= 0 || delta <= 0) {
usage(argv[0]);
return 1;
}
IoSimple::In io(file);
ContinuedFractionType cf(io);
typedef typename ContinuedFractionType::PlotParamsType PlotParamsType;
typename ContinuedFractionType::PlotDataType v;
PlotParamsType plotParams(wbegin, wend, wstep, delta, 0, 0);
cf.plot(v, plotParams);
for (SizeType x = 0; x < v.size(); x++) {
std::cout << v[x].first << " " << PsimagLite::real(v[x].second);
std::cout << " " << PsimagLite::imag(v[x].second) << "\n";
}
}
|