comparison framework/Align.h @ 691:c8ba09756eff by-id

Work on management of alignment-related models
author Chris Cannam
date Fri, 12 Jul 2019 13:58:02 +0100
parents e0b0f3e163ca
children e4d92aaa689c
comparison
equal deleted inserted replaced
690:827a522a5da4 691:c8ba09756eff
115 115
116 // tuning-difference output model (a SparseTimeValueModel) -> data 116 // tuning-difference output model (a SparseTimeValueModel) -> data
117 // needed for subsequent alignment 117 // needed for subsequent alignment
118 std::map<ModelId, TuningDiffRec> m_pendingTuningDiffs; 118 std::map<ModelId, TuningDiffRec> m_pendingTuningDiffs;
119 119
120 // alignment model id -> path output model id
121 std::map<ModelId, ModelId> m_pendingAlignments;
122
120 // external alignment subprocess -> model into which to stuff the 123 // external alignment subprocess -> model into which to stuff the
121 // results (an AlignmentModel) 124 // results (an AlignmentModel)
122 std::map<QProcess *, ModelId> m_pendingProcesses; 125 std::map<QProcess *, ModelId> m_pendingProcesses;
123 }; 126 };
124 127