added some first features
This commit is contained in:
parent
62fd115a76
commit
26a1b444fe
13
src/ToDo.txt
13
src/ToDo.txt
@ -41,18 +41,9 @@ short term:
|
||||
* implement table based theory functions (LF stuff)
|
||||
static GKT LF **DONE** 08-03-12
|
||||
|
||||
* check midas keyboard routines for the usability
|
||||
|
||||
system.c
|
||||
while (ss_kbhit()) {
|
||||
ch = ss_getchar(0);
|
||||
if (ch == -1)
|
||||
ch = getchar();
|
||||
|
||||
if (ch == '!')
|
||||
status = RPC_SHUTDOWN;
|
||||
}
|
||||
* do I need to cleanup AddText() objects from TPaveText etc myself? **CHECK**
|
||||
|
||||
* something is strange with the coordinate system in TPaveText! **CHECK**
|
||||
|
||||
---------------------
|
||||
intermediate term:
|
||||
|
@ -362,6 +362,13 @@ void PMusrCanvas::UpdateParamTheoryPad()
|
||||
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();
|
||||
fMainCanvas->cd();
|
||||
fMainCanvas->Update();
|
||||
|
Loading…
x
Reference in New Issue
Block a user