added some first features
This commit is contained in:
13
src/ToDo.txt
13
src/ToDo.txt
@ -41,18 +41,9 @@ short term:
|
|||||||
* implement table based theory functions (LF stuff)
|
* implement table based theory functions (LF stuff)
|
||||||
static GKT LF **DONE** 08-03-12
|
static GKT LF **DONE** 08-03-12
|
||||||
|
|
||||||
* check midas keyboard routines for the usability
|
* do I need to cleanup AddText() objects from TPaveText etc myself? **CHECK**
|
||||||
|
|
||||||
system.c
|
|
||||||
while (ss_kbhit()) {
|
|
||||||
ch = ss_getchar(0);
|
|
||||||
if (ch == -1)
|
|
||||||
ch = getchar();
|
|
||||||
|
|
||||||
if (ch == '!')
|
|
||||||
status = RPC_SHUTDOWN;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
* something is strange with the coordinate system in TPaveText! **CHECK**
|
||||||
|
|
||||||
---------------------
|
---------------------
|
||||||
intermediate term:
|
intermediate term:
|
||||||
|
@ -362,6 +362,13 @@ void PMusrCanvas::UpdateParamTheoryPad()
|
|||||||
fParameterTheoryPad->AddText(0.03, ypos, str.Data());
|
fParameterTheoryPad->AddText(0.03, ypos, str.Data());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// add functions --------------------------------------------------------
|
||||||
|
ypos -= 0.025;
|
||||||
|
for (unsigned int i=1; i<fFunctionList.size(); i++) {
|
||||||
|
ypos -= 0.025;
|
||||||
|
fParameterTheoryPad->AddText(0.03, ypos, fFunctionList[i].fLine.Data());
|
||||||
|
}
|
||||||
|
|
||||||
fParameterTheoryPad->Draw();
|
fParameterTheoryPad->Draw();
|
||||||
fMainCanvas->cd();
|
fMainCanvas->cd();
|
||||||
fMainCanvas->Update();
|
fMainCanvas->Update();
|
||||||
|
Reference in New Issue
Block a user