Changeset 8634 for trunk/MagicSoft
- Timestamp:
- 07/14/07 21:43:01 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8633 r8634 24 24 * mpedestal/MPedestalSubtract.[h,cc]: 25 25 - fixed the buggy Memcpy function introduced with the last change 26 07/06/17 ;( This bug was effecting the old FADC data only, the 27 MUX data were (by chance) correctly copied 26 07/06/17 ;( Fortunately this bug was only effectingt the MC data. 27 The MUX and old FADC data got copied correctly because they are 28 stored in the hi-gain array only, so that the number of hi-gain 29 samples returned in Process is 30/80. 28 30 29 31 * mpedestal/MExtractPedestal.cc: 30 32 - some cosmetics 31 33 32 * mfilter/MFMagicCuts.cc:34 * mfilter/MFMagicCuts.cc: 33 35 - changed some comments 34 36 35 37 * mjobs/MJCut.cc: 36 38 - some cosmetics. Simplified the setting of the scale factor 39 40 * macros/train/traindisp.C, macros/train/trainenergy.C, 41 macros/train/trainseparation.C: 42 - added some more helpfull comment 37 43 38 44 -
trunk/MagicSoft/Mars/macros/train/traindisp.C
r7418 r8634 3 3 MDataSet set("mctesttrain.txt"); 4 4 set.SetNumAnalysis(1); // Necessary 5 6 // alternatively use: 7 //MDataSet set("mcctesttrain.txt", "/magic/montacrlo/sequences", "/magic/montecarlo/star"); 5 8 6 9 MJTrainDisp opt; -
trunk/MagicSoft/Mars/macros/train/trainenergy.C
r7998 r8634 41 41 MDataSet set("mcdataset.txt"); 42 42 set.SetNumAnalysis(1); // Necessary 43 44 // alternatively use: 45 //MDataSet set("mcctesttrain.txt", "/magic/montacrlo/sequences", "/magic/montecarlo/star"); 43 46 44 47 MJTrainEnergy opt; -
trunk/MagicSoft/Mars/macros/train/trainseparation.C
r7650 r8634 1 1 void trainseparation() 2 2 { 3 MDataSet settrn ;4 MDataSet settst ;3 MDataSet settrn("mctrain.txt"); 4 MDataSet settst("mctest.txt"); 5 5 settrn.SetNumAnalysis(1); 6 6 settst.SetNumAnalysis(2); 7 8 // alternatively use: 9 //MDataSet settrn("mctrain.txt", "/magic/montacrlo/sequences", "/magic/montecarlo/star"); 10 //MDataSet settst("mctest.txt" , "/magic/montacrlo/sequences", "/magic/montecarlo/star"); 7 11 8 12 MJTrainSeparation opt;
Note:
See TracChangeset
for help on using the changeset viewer.