Changeset 993
- Timestamp:
- 10/26/01 11:44:11 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMcPedestalCopy.cc
r857 r993 53 53 } 54 54 55 Bool_t MMcPedestalCopy::PreProcess( MParList *pList)55 Bool_t MMcPedestalCopy::PreProcess(MParList *pList) 56 56 { 57 57 fMcPedestals = (MMcFadcHeader*)pList->FindObject("MMcFadcHeader"); -
trunk/MagicSoft/Mars/mmain/MMars.cc
r959 r993 212 212 // Map the window, set up the layout, etc. 213 213 // 214 SetWMSizeHints( 400, 410, 400, 410, 10, 10); // set the smallest and biggest size of the Main frame214 SetWMSizeHints(330, 410, 330, 410, 10, 10); // set the smallest and biggest size of the Main frame 215 215 216 216 MapSubwindows(); -
trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc
r991 r993 85 85 fRadioButton3 = new TGRadioButton(group, "Use a number of trigger conditions (1..n)."); 86 86 87 fRadioButton1->SetState(kButtonDown); 88 87 89 /* 88 90 FIXME: ~TGRadioButton fails with segfault in GetMainFrame … … 188 190 #include "MMcCollectionAreaCalc.h" 189 191 192 #include "../mmc/MMcTrig.hxx" // FIXME: see FIXME below 193 190 194 Int_t MMonteCarlo::GetDim() const 191 195 { 196 return 0; 192 197 Int_t dim = atoi(fNumEntry->GetText()); 193 198 … … 216 221 MTaskList tlist; 217 222 plist.AddToList(&tlist); 223 224 // 225 // FIXME: This line is needed that root finds the MMc-classes in the 226 // dictionary when calling the constructor of MReadTree 227 // I don't have any idea why... 228 // Rem: This happens only in this GUI! 229 // 230 MMcTrig trig; 218 231 219 232 // … … 309 322 310 323 // 324 // FIXME: This line is needed that root finds the MMc-classes in the 325 // dictionary when calling the constructor of MReadTree 326 // I don't have any idea why... 327 // Rem: This happens only in this GUI! 328 // 329 MMcTrig trig; 330 331 // 311 332 // Setup out tasks: 312 333 // - First we have to read the events … … 390 411 391 412 // 413 // FIXME: This line is needed that root finds the MMc-classes in the 414 // dictionary when calling the constructor of MReadTree 415 // I don't have any idea why... 416 // Rem: This happens only in this GUI! 417 // 418 MMcTrig trig; 419 420 // 392 421 // Setup the task list 393 422 // - You need the read and the MMcThresholdCalc tasks … … 410 439 411 440 // 412 // Begin the loop (if the loop wasn't succes full441 // Begin the loop (if the loop wasn't successfull 413 442 // don't try to draw the results 414 443 // … … 422 451 TObject *obj; 423 452 while ((obj=Next())) 424 453 obj->DrawClone(); 425 454 } 426 455 -
trunk/MagicSoft/Mars/mmontecarlo/MMcCollectionAreaCalc.cc
r983 r993 32 32 33 33 #include "MMcEvt.hxx" 34 #include "MMcTrig.hxx" 34 #include "MMcTrig.hxx" 35 35 36 36 #include "MHMcCollectionArea.h" -
trunk/MagicSoft/Mars/mmontecarlo/MMcTriggerRateCalc.cc
r988 r993 28 28 #include "MLog.h" 29 29 #include "MLogManip.h" 30 30 31 #include "MParList.h" 31 32 32 #include "MHMcRate.h" 33 33 34 #include "MMcEvt.hxx" 34 #include "MMcTrig.hxx" 35 #include "MMcTrig.hxx" 35 36 36 37 ClassImp(MMcTriggerRateCalc); -
trunk/MagicSoft/Mars/readraw.cc
r991 r993 17 17 #include "MInputStreamID.h" 18 18 19 #include "MMcEvt.hxx" 20 #include "MMcTrig.hxx" 19 #include "MMcEvt.hxx" 20 #include "MMcTrig.hxx" 21 21 22 22 ///////////////////////////////////////////////////////////////////////////// … … 28 28 int main(const int argc, const char **argv) 29 29 { 30 gLog << "==================================================" << endl 31 gLog << " ReadRaw v0.1 " << endl;32 gLog << " MARS Merging and Preprocessing Program" << endl;33 gLog << " Compiled on <" << __DATE__ << ">" << endl 34 gLog << "==================================================" << endl 30 gLog << "==================================================" << endl; 31 gLog << " ReadRaw v0.1 " << endl; 32 gLog << " MARS - Read and print raw data file " << endl; 33 gLog << " Compiled on <" << __DATE__ << ">" << endl; 34 gLog << "==================================================" << endl; 35 35 gLog << endl; 36 36
Note:
See TracChangeset
for help on using the changeset viewer.