125 if(command == DrawColsCmd)
126 eventAction->SetDrawColsFlag(newValue);
128 if(command == DrawTrksCmd)
129 eventAction->SetDrawTrksFlag(newValue);
131 if(command == DrawHitsCmd) {
133 const char*
t = newValue;
134 std::istringstream is(t);
136 eventAction->SetDrawHitsFlag(vl!=0);
139 if(command == SavePmtCmd) {
141 const char*
t = newValue;
142 std::istringstream is(t);
144 eventAction->SetSavePmtFlag(vl!=0);
147 if(command == SaveHitsCmd) {
149 const char*
t = newValue;
150 std::istringstream is(t);
152 eventAction->SetSaveHitsFlag(vl!=0);
155 if(command == PrintCmd)
156 {eventAction->SetPrintModulo(PrintCmd->GetNewIntValue(newValue));}