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
|
/***********************************************/
/**
* @file instrumentStarCamera2RotaryMatrix.cpp
*
* @brief Compute rotary matrix.
*
* @author Torsten Mayer-Guerr
* @date 2020-02-02
*
*/
/***********************************************/
// Latex documentation
#define DOCSTRING docstring
static const char *docstring = R"(
Write \configFile{inputfileStarCamera}{instrument} rotations
as \configFile{outputfileInstrument}{instrument} rotary matrices
(for each epoch $xx, xy, xz, yx, yy, yz, zx, zy, zz$).
)";
/***********************************************/
#include "programs/program.h"
#include "files/fileInstrument.h"
/***** CLASS ***********************************/
/** @brief Compute rotary matrix.
* @ingroup programsGroup */
class InstrumentStarCamera2RotaryMatrix
{
public:
void run(Config &config, Parallel::CommunicatorPtr comm);
};
GROOPS_REGISTER_PROGRAM(InstrumentStarCamera2RotaryMatrix, PARALLEL, "Compute rotary matrix", Instrument)
/***********************************************/
void InstrumentStarCamera2RotaryMatrix::run(Config &config, Parallel::CommunicatorPtr comm)
{
try
{
FileName fileNameOut, fileNameStarCamera;
readConfig(config, "outputfileInstrument", fileNameOut, Config::MUSTSET, "", "xx, xy, xz, yx, yy, yz, zx, zy, zz (MISCVALUES)");
readConfig(config, "inputfileStarCamera", fileNameStarCamera, Config::MUSTSET, "", "");
if(isCreateSchema(config)) return;
logStatus<<"read star camera data <"<<fileNameStarCamera<<">"<<Log::endl;
InstrumentFile file(fileNameStarCamera);
std::vector<Arc> arcList(file.arcCount());
Parallel::forEach(arcList, [&](UInt arcNo)
{
StarCameraArc starCamera = file.readArc(arcNo);
MiscValuesArc arc;
for(UInt i=0; i<starCamera.size(); i++)
{
MiscValuesEpoch epoch(6);
epoch.time = starCamera.at(i).time;
epoch.values = flatten(starCamera.at(i).rotary.matrix().trans());
arc.push_back(epoch);
}
return arc;
}, comm); // forEach
if(Parallel::isMaster(comm))
{
logStatus<<"write rotary matrix to file <"<<fileNameOut<<">"<<Log::endl;
InstrumentFile::write(fileNameOut, arcList);
Arc::printStatistics(arcList);
}
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
|