Changeset 19904 for trunk/FACT++/src
- Timestamp:
- 12/15/19 16:23:56 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/spectrum.cc
r19903 r19904 2060 2060 map<size_t, double> rolke_int; 2061 2061 2062 if (verbose>0) 2063 cout << "Bin Excess Significance Flux ErrFlux" << endl; 2064 2062 2065 for (auto ir=res13.cbegin(); ir!=res13.cend(); ir++) 2063 2066 { … … 2094 2097 if (verbose>0) 2095 2098 { 2096 cout << setw(5) << row["center"] << ": "; 2097 cout << setw(10) << row["Excess"] << " "; 2098 cout << setw(10) << row["Flux"] << " "; 2099 cout << setw(10) << row["ErrFlux"] << " "; 2100 cout << setw(10) << row["Significance"] << '\n'; 2099 cout << setw(5) << row["center"] << ":"; 2100 cout << " " << setw(10) << row["Excess"]; 2101 cout << " " << setw(10) << row["Significance"]; 2102 cout << " " << setw(10) << row["Flux"]; 2103 cout << " " << setw(10) << row["ErrFlux"]; 2104 cout << endl; 2101 2105 } 2102 2106 } … … 2169 2173 WriteHistogram(connection, hist); 2170 2174 2175 hist.name = "SigmaFlux"; 2176 hist.v = "SigmaFlux"; 2177 hist.err = ""; 2178 WriteHistogram(connection, hist); 2179 2171 2180 if (*ib=="Energy") 2172 2181 { … … 2177 2186 hist.v = "FluxI"; 2178 2187 hist.err = "ErrFluxI"; 2188 WriteHistogram(connection, hist); 2189 2190 hist.dir = "Data/Energy/Integral"; 2191 hist.name = "SigmaFlux"; 2192 hist.v = "SigmaFluxI"; 2193 hist.err = ""; 2179 2194 WriteHistogram(connection, hist); 2180 2195
Note:
See TracChangeset
for help on using the changeset viewer.