Changeset 1438 for trunk/MagicSoft
- Timestamp:
- 07/25/02 10:10:36 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Makefile.conf.general
r1416 r1438 4 4 5 5 ROOTVER = `root-config --version` 6 7 #ROOTLIBS = `root-config --libs`8 6 ROOTLIBS = `root-config --libs` -lMinuit 9 10 #ROOTGLIBS = `root-config --glibs`11 7 ROOTGLIBS = `root-config --glibs` -lMinuit 12 13 8 ROOTCFLAGS = `root-config --cflags` 14 9 -
trunk/MagicSoft/Mars/NEWS
r1434 r1438 4 4 5 5 - added all subdirectories as Include-Paths for ACLIC (s. rootlogon.C) 6 7 - corrected 48(!) wrong entries in the Next Neighbor table of the 8 Magic Camera (all in the inner part of the outer ring, mostly 9 missing a single NN) 10 11 - Fixed a bug in the table describing the Next Neighbours of the 12 CT1 camera (a pixel 127 doesn't exist and the pixel 126 didn't 13 have any neighbour) 6 14 7 15 - changed trigrate.C: now it calculates the pure NSB triggers from … … 13 21 14 22 - changed MWriteAsciiFile to accept rules (MDataChain) 15 16 - Implemented generalized event-matrices (one row per event)17 (MHMatrix)18 19 - implemented the one dimensional composite probabilities20 (MHCompProb, MCompProbCalc, comprob.C)21 22 - implemented the Multidimensional Distances (Next Neighbours)23 (MMultiDimDistCalc, multidimdist.C, MHMatrix)24 25 - Added a camera display displaying the pixel numbers to the26 event display gui.27 28 - Added Monte Carlo Informations to event display gui29 30 - Changed the camera display to display the pixel numbering31 32 - Added three buttons to the camera display to change the palette33 34 - Added the number of used and core pixels after image cleaning35 to MHillas36 37 - Changed the algorithm used in MHillas according to TDAS 02-0338 39 - Changed the Alpha range according to TDAS 02-03 to [-90°,90°]40 41 - Changed the algorithm used in MHillasSrc according to TDAS 02-0342 43 - Added fCosDeltaAlpha to MHillasSrc44 45 - Fixed a bug in the table describing the Next Neighbours of the46 CT1 camera (a pixel 127 doesn't exist and the pixel 126 didn't47 have any neighbour)48 23 49 24 - Calls to MWriteAsciiFile::AddContainer and MWriteAsciiFile::AddRule … … 51 26 MWriteAsciiFile::AddColumns. Be carefull, the arguments have slightly 52 27 changed. 28 29 30 - Implemented generalized event-matrices (one row per event) 31 (MHMatrix) 32 33 - implemented the one dimensional composite probabilities 34 (MHCompProb, MCompProbCalc, comprob.C) 35 36 - implemented the Multidimensional Distances (Next Neighbours) 37 (MMultiDimDistCalc, multidimdist.C, MHMatrix) 38 39 - Added a camera display displaying the pixel numbers to the 40 event display gui. 41 42 - Added Monte Carlo Informations to event display gui 43 44 - Changed the camera display to display the pixel numbering 45 46 - Added three buttons to the camera display to change the palette 47 48 - Added the number of used and core pixels after image cleaning 49 to MHillas 50 51 - Changed the algorithm used in MHillas according to TDAS 02-03 52 53 - Changed the Alpha range according to TDAS 02-03 to [-90°,90°] 54 55 - Changed the algorithm used in MHillasSrc according to TDAS 02-03 56 57 - Added fCosDeltaAlpha to MHillasSrc 53 58 54 59 -
trunk/MagicSoft/Mars/macros/rootlogon.C
r1381 r1438 86 86 gInterpreter->AddIncludePath("mfileio"); 87 87 gInterpreter->AddIncludePath("mfilter"); 88 gInterpreter->AddIncludePath("mgeom"); 88 89 gInterpreter->AddIncludePath("mgui"); 89 90 gInterpreter->AddIncludePath("mhist"); … … 92 93 gInterpreter->AddIncludePath("mmontecarlo"); 93 94 gInterpreter->AddIncludePath("mraw"); 95 gInterpreter->AddIncludePath("mtools"); 94 96 95 97 cout << "Welcome to the Mars Root environment." << endl; -
trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc
r1394 r1438 36 36 #include "MGeomPix.h" 37 37 38 #include "MHexagon.h"39 40 38 ClassImp(MCerPhotEvt); 41 39 -
trunk/MagicSoft/Mars/manalysis/Makefile
r1409 r1438 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../mgui -I../mmc -I../mraw -I../mdata -I../mhist 24 INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom \ 25 -I../mdata -I../mhist 25 26 26 27 #------------------------------------------------------------------------------ … … 45 46 MHillasSrcCalc.cc \ 46 47 MCerPhotPix.cc \ 47 MCerPhotCalc.cc \48 MCerPhotEvt.cc \ 48 49 MCerPhotAnal.cc \ 49 MCerPhotCalc2.cc \ 50 MCerPhotEvt.cc \ 50 MCerPhotCalc.cc \ 51 MCerPhotCalc2.cc \ 52 MImageFit.cc \ 51 53 MPedCalcPedRun.cc \ 52 54 MBlindPixels.cc \ -
trunk/MagicSoft/Mars/meventdisp/Makefile
r1385 r1438 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../mraw -I../mgui \24 INCLUDES = -I. -I../mbase -I../mraw -I../mgui -I../mgeom \ 25 25 -I../manalysis -I../mfileio -I../mmc 26 26 -
trunk/MagicSoft/Mars/mgeom/MGeomCam.cc
r1436 r1438 40 40 41 41 #include "MGeomPix.h" 42 #include "MHexagon.h"43 42 44 43 ClassImp(MGeomCam); -
trunk/MagicSoft/Mars/mhist/Makefile
r1415 r1438 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc -I../mgui -I../mdata 24 INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc \ 25 -I../mgui -I../mgeom -I../mdata 25 26 26 27 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.