Extended data structure for parameters of stage.
More...
Extended data structure for parameters of stage.
Definition at line 513 of file JSydney.cc.
◆ JParameters_t()
JACOUSTICS::JSydney::JParameters_t::JParameters_t |
( |
| ) |
|
|
inline |
Default constuctor.
Definition at line 519 of file JSydney.cc.
519 :
520 Nmax (std::numeric_limits<size_t>::max()),
524 {}
◆ ClassDef()
◆ operator>>
std::istream & operator>> |
( |
std::istream & | in, |
|
|
JParameters_t & | object ) |
|
friend |
Read parameters from input stream.
- Parameters
-
in | input stream |
object | parameters |
- Returns
- input stream
Definition at line 534 of file JSydney.cc.
535 {
537
538 in >> object.option
539 >> object.mestimator
540 >> object.sigma_s
541 >> object.stdev
542 >> object.Nextra;
543
544 if (in) {
545
546 for (double value; in >> value; ) {
547 object.steps.push_back(value);
548 }
549
550 if (!in.bad()) {
551 in.clear();
552 }
553 }
554
555 return in;
556 }
JParameters_t()
Default constuctor.
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & | out, |
|
|
const JParameters_t & | object ) |
|
friend |
Write parameters to output stream.
- Parameters
-
out | output stream |
object | parameters |
- Returns
- output stream
Definition at line 566 of file JSydney.cc.
567 {
569
570 out << setw(2) << object.option << ' '
571 << setw(2) << object.mestimator << ' '
574 << setw(3) << object.Nextra;
575
576 for (
const double value :
object.
steps) {
577 out <<
' ' <<
FIXED(9,5) << value;
578 }
579
580 return out;
581 }
Auxiliary data structure for floating point format specification.
std::vector< double > steps
Auxiliary data structure for floating point format specification.
◆ Nmax
size_t JACOUSTICS::JSydney::JParameters_t::Nmax |
◆ Nextra
size_t JACOUSTICS::JSydney::JParameters_t::Nextra |
◆ epsilon
double JACOUSTICS::JSydney::JParameters_t::epsilon |
◆ debug
int JACOUSTICS::JSydney::JParameters_t::debug |
◆ steps
std::vector<double> JACOUSTICS::JSydney::JParameters_t::steps |
◆ Qmin
double JACOUSTICS::JFitParameters::Qmin |
|
inherited |
◆ mestimator
int JACOUSTICS::JFitParameters::mestimator |
|
inherited |
◆ sigma_s
double JACOUSTICS::JFitParameters::sigma_s |
|
inherited |
◆ Tmax_s
double JACOUSTICS::JFitParameters::Tmax_s |
|
inherited |
◆ Nmin
size_t JACOUSTICS::JFitParameters::Nmin |
|
inherited |
◆ stdev
double JACOUSTICS::JFitParameters::stdev |
|
inherited |
◆ option
int JACOUSTICS::JFitParameters::option |
|
inherited |
◆ chi2perNDF
double JACOUSTICS::JFitParameters::chi2perNDF |
|
inherited |
◆ deadTime_s
double JACOUSTICS::JFitParameters::deadTime_s |
|
inherited |
The documentation for this struct was generated from the following file: