- Timestamp:
- 02/04/05 13:26:11 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6250 r6252 21 21 -*-*- END OF LINE -*-*- 22 22 23 2005/02/04 Thomas Bretz 24 25 * Makefile.rules: 26 - fixed creation of main MDep.d 27 28 * callisto.cc, merpp.cc, showlog.cc, showplot.cc, star.cc: 29 - added commandline option --version 30 31 * mbase/MFilter.cc: 32 - changed default for 'GetRule' 33 34 * mbase/MParContainer.cc: 35 - simplified GetNewObject 36 37 * mfbase/MF.cc: 38 - if no conditional sign is found try to create 39 MFilter-object 40 41 * mraw/MRawEvtData.cc: 42 - fixed the initialization of fABFlags in case maxid==0 which 43 is the default. This caused MRawEvtPixelIter::HasABFlag 44 to do unallowed access to memory for old root-files without 45 the AB flag, because it assumed (due to size==1) that the 46 data contains the ab flag 47 48 * mraw/MRawEvtPixelIter.[h,cc]: 49 - removed some obsolete debug comments 50 - simplified HasABFlag 51 52 53 23 54 2005/02/04 Abelardo Moralejo 24 55 25 56 * macros/starmc2.C 26 57 - added to output missing container MConcentration. 58 27 59 28 60 … … 65 97 * mraw/MRawEvtHeader.h 66 98 - introduced Setter() of cal. pattern for Abelardo 99 67 100 68 101 -
trunk/MagicSoft/Mars/Makefile.rules
r4020 r6252 25 25 %.d: 26 26 @echo " - Generating dependencies" $@ 27 $(ROOTSYS)/bin/rmkdepend -f- -Y -w 3000 -- $(INCLUDES) -- $(SRCFILES) 2> /dev/null | \27 $(ROOTSYS)/bin/rmkdepend -f- -Y -w 3000 -- $(INCLUDES) -- $(SRCFILES) -- $(PROGRAMS:=.cc) 2> /dev/null | \ 28 28 sed 's/^\(.*\).o:/$@ \1.o:/' > $@ 29 29 echo "$@: Makefile" >> $@ -
trunk/MagicSoft/Mars/NEWS
r6208 r6252 2 2 *** Version <cvs> 3 3 4 - Kalibration is now done autmatically into equiv. photo-electrons like5 decided by the C B.4 - Calibration is now done autmatically into equiv. photo-electrons like 5 decided by the Collaboration Board 6 6 7 - Reference lines in the display can be read from conf.file8 9 - Interlaced cal . events are now handled correctly by callisto.10 11 - High-Gain vs. Low-Gain calibration constants can be calculated (but not12 yet applied) in callisto.7 - Reference lines in the display can be read from resource file 8 9 - Interlaced calibration events can be handled by callisto 10 11 - High-Gain vs. Low-Gain calibration constants can be calculated 12 (but not yet applied) in callisto. 13 13 14 14 - class MJCalibTest can be called by callisto 15 15 16 - interpolated pointing positions are now in Tree "Events" after calibration 16 - interpolated pointing positions are now in Tree "Events" after 17 calibration 17 18 18 19 - callisto can now run with three data types: rawdata, rootdata, MC … … 21 22 mreport/MReportStarguider.h for implementing starguider-data 22 23 23 - For implementing the starguider-data the class MReportStarguider has 24 been added to mreport/ReportLinkDef.h and to mreport/Makefile 25 26 - added two containers ( MReportStarguider, MTimeStarguider ) and 27 added MReportStarguider to the list in merpp.cc 24 - the output of merpp-update now contains starguider information: 25 MReportStarguider and MTimeStarguider 28 26 29 27 - Fixed bug in MHHadronness.cc which made that the displayed Q-factor … … 31 29 energy (Size) events. 32 30 33 - Made MExtractTimeAndChargeDigital 31 - Made MExtractTimeAndChargeDigitalFilter the default for callisto 34 32 35 33 - added a new loop to callisto to support the correct extraction of … … 46 44 small pixels, example: extendcam.C 47 45 48 - added possibility to write data to memory (TTree) using M ReadTree46 - added possibility to write data to memory (TTree) using MWriteRootFile 49 47 50 48 - added possibility to read a TTree stored only in memory by MReadTree … … 63 61 with the signal extractor with randomization (extraction window is 64 62 randomly fixed) 65 The th irkind of pedestal is not yet implemented (for speed reasons) as63 The three kind of pedestal is not yet implemented (for speed reasons) as 66 64 long as nobody really needs it: 67 65 + pedestal from extractor with randomizatiuon (MPedPhotFromExtractorRndm): … … 76 74 batch mode possible: 77 75 showplot -b --save-as-ps[=outfile.ps] infile.root 76 77 - Allow class names as part of filter rules, eg 78 (MFSupercuts) && (MHillas.fSize>100) 78 79 79 80 -
trunk/MagicSoft/Mars/callisto.cc
r6229 r6252 59 59 gLog << " -q Quit when job is finished" << endl; 60 60 gLog << " -f Force overwrite of existing files" << endl; 61 //gLog << " -ff Force execution if not all files found" << endl;62 61 gLog << " --ind=path Path where to search for the data files" << endl; 63 62 gLog << " [default=standard path in datacenter]" << endl; … … 76 75 gLog << " --config=callisto.rc Resource file [default=callisto.rc]" << endl; 77 76 gLog << endl; 77 gLog << " --version, -V Show startup message with version number" << endl; 78 78 gLog << " -?, -h, --help This help" << endl << endl; 79 79 gLog << " Setup of the two jobs run by callisto (MJPedestal and MJCalibration)" << endl; … … 106 106 MArgs arg(argc, argv, kTRUE); 107 107 108 if (arg.HasOnly("-V") || arg.HasOnly("--version")) 109 return 0; 110 108 111 if (arg.HasOnly("-?") || arg.HasOnly("-h") || arg.HasOnly("--help")) 109 112 {
Note:
See TracChangeset
for help on using the changeset viewer.