Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
debug messages
Browse files Browse the repository at this point in the history
MPIBR-kretschmerf committed Oct 21, 2016
1 parent 1afb15f commit ad87b1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion trialseq.cpp
Original file line number Diff line number Diff line change
@@ -99,8 +99,10 @@ QVector<double> loadExternalItiSequence(QString fileName, int repeatPositive, in
QTextStream in(&file);
while (!in.atEnd()) {
QString line = in.readLine();
itiSequence.append(10); /*Get proper value*/
itiSequence.append(line.toDouble()); /*Get proper value*/
}
}else{
qDebug()<<"Unable to open external ITI file";
}
return itiSequence;
}

0 comments on commit ad87b1a

Please sign in to comment.