Changeset 7402 for trunk/MagicSoft
- Timestamp:
- 11/15/05 11:38:25 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7401 r7402 21 21 22 22 * macros/optim/optimdisp.C, macros/optim/optimenergy.C, 23 macros/optim/rfenergyest.C :23 macros/optim/rfenergyest.C, macros/optim/optimwobble.C: 24 24 - added some more comments 25 25 - updated -
trunk/MagicSoft/Mars/macros/optim/optimwobble.C
r7153 r7402 32 32 cuts.SetAlphaCut(MFMagicCuts::kWobble); 33 33 34 /* You can also try (switch on scaling): 35 36 fit.SetScaleMode(MAlphaFitter::kBackground); 37 fit.SetBackgroundFitMin(0.12); 38 fit.SetBackgroundFitMax(0.5); 39 40 cuts.SetThetaCut(MFMagicCuts::kOff); 41 */ 42 34 43 // ----------------------------------------------------------- 35 44 -
trunk/MagicSoft/Mars/mtools/MTFillMatrix.h
r2744 r7402 9 9 class MTask; 10 10 class MHMatrix; 11 class MFilter; 11 12 12 13 class MTFillMatrix : public MParContainer … … 15 16 MH3 *fReference; 16 17 MRead *fReader; 18 17 19 MHMatrix *fDestMatrix1; 18 20 MHMatrix *fDestMatrix2; 21 19 22 Int_t fNumDestEvents1; 20 23 Int_t fNumDestEvents2; 24 21 25 MTask *fWriteFile1; 22 26 MTask *fWriteFile2; 27 28 TList fPreCuts; 23 29 24 30 Bool_t CheckResult(MHMatrix *m, Int_t num) const; … … 64 70 void SetReader(MRead *task) { fReader = task; } 65 71 72 void AddPreCut(const char *rule); 73 void AddPreCut(MFilter *f); 74 66 75 Bool_t Process(); 67 76 Bool_t WriteMatrix1(const TString &fname) const { return WriteMatrix(fDestMatrix1, fname, 1); }
Note:
See TracChangeset
for help on using the changeset viewer.