本文整理汇总了C++中Experiment::getCurrentTrial方法的典型用法代码示例。如果您正苦于以下问题:C++ Experiment::getCurrentTrial方法的具体用法?C++ Experiment::getCurrentTrial怎么用?C++ Experiment::getCurrentTrial使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Experiment
的用法示例。
在下文中一共展示了Experiment::getCurrentTrial方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: postSelection
//SELECTION
void Viewer::postSelection(const QPoint& point){
int experimentState=0;
// Compute orig and dir, used to draw a representation of the intersecting line
//camera()->convertClickToLine(point, orig, dir);
//Click and returns the state of the experiment:
//- 0: The Experiment doesn't have started
//- 1: The Experiment has started, shows the current block
//- 2: Finished Experiment, doesn't show anything
experimentState=exper.click(point);
if(experimentState==2){
thanks();
}
addMessage("click x: ",point.x(),2);
addMessage("click y: ",point.y(),3);
clicks++;
addMessage("Clicks: ",clicks,4);
addMessage("Experiment state: ",experimentState,5);
addMessage("Block: ",exper.getCurrentBlock(),6);
addMessage("Trial: ",exper.getCurrentTrial(),7);
}