Changeset 1438 for trunk/MagicSoft


Ignore:
Timestamp:
07/25/02 10:10:36 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Makefile.conf.general

    r1416 r1438  
    44
    55ROOTVER    =  `root-config --version`
    6 
    7 #ROOTLIBS   =  `root-config --libs`
    86ROOTLIBS   =  `root-config --libs` -lMinuit
    9 
    10 #ROOTGLIBS  =  `root-config --glibs`
    117ROOTGLIBS  =  `root-config --glibs` -lMinuit
    12 
    138ROOTCFLAGS =  `root-config --cflags`
    149
  • trunk/MagicSoft/Mars/NEWS

    r1434 r1438  
    44
    55   - 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)
    614
    715   - changed trigrate.C: now it calculates the pure NSB triggers from
     
    1321
    1422   - 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 probabilities
    20      (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 the
    26      event display gui.
    27 
    28    - Added Monte Carlo Informations to event display gui
    29 
    30    - Changed the camera display to display the pixel numbering
    31    
    32    - Added three buttons to the camera display to change the palette
    33 
    34    - Added the number of used and core pixels after image cleaning
    35      to MHillas
    36 
    37    - Changed the algorithm used in MHillas according to TDAS 02-03
    38 
    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-03
    42 
    43    - Added fCosDeltaAlpha to MHillasSrc
    44 
    45    - Fixed a bug in the table describing the Next Neighbours of the
    46      CT1 camera (a pixel 127 doesn't exist and the pixel 126 didn't
    47      have any neighbour)
    4823
    4924   - Calls to MWriteAsciiFile::AddContainer and MWriteAsciiFile::AddRule
     
    5126     MWriteAsciiFile::AddColumns. Be carefull, the arguments have slightly
    5227     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
    5358
    5459
  • trunk/MagicSoft/Mars/macros/rootlogon.C

    r1381 r1438  
    8686    gInterpreter->AddIncludePath("mfileio");
    8787    gInterpreter->AddIncludePath("mfilter");
     88    gInterpreter->AddIncludePath("mgeom");
    8889    gInterpreter->AddIncludePath("mgui");
    8990    gInterpreter->AddIncludePath("mhist");
     
    9293    gInterpreter->AddIncludePath("mmontecarlo");
    9394    gInterpreter->AddIncludePath("mraw");
     95    gInterpreter->AddIncludePath("mtools");
    9496
    9597    cout << "Welcome to the Mars Root environment." << endl;
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc

    r1394 r1438  
    3636#include "MGeomPix.h"
    3737
    38 #include "MHexagon.h"
    39 
    4038ClassImp(MCerPhotEvt);
    4139
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r1409 r1438  
    2222#  connect the include files defined in the config.mk file
    2323#
    24 INCLUDES = -I. -I../mbase -I../mgui -I../mmc -I../mraw -I../mdata -I../mhist
     24INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom \
     25           -I../mdata -I../mhist
    2526
    2627#------------------------------------------------------------------------------
     
    4546           MHillasSrcCalc.cc \
    4647           MCerPhotPix.cc \
    47            MCerPhotCalc.cc \
     48           MCerPhotEvt.cc \
    4849           MCerPhotAnal.cc \
    49            MCerPhotCalc2.cc \
    50            MCerPhotEvt.cc \
     50           MCerPhotCalc.cc \
     51           MCerPhotCalc2.cc \
     52           MImageFit.cc \
    5153           MPedCalcPedRun.cc \
    5254           MBlindPixels.cc \
  • trunk/MagicSoft/Mars/meventdisp/Makefile

    r1385 r1438  
    2222#  connect the include files defined in the config.mk file
    2323#
    24 INCLUDES = -I. -I../mbase -I../mraw -I../mgui \
     24INCLUDES = -I. -I../mbase -I../mraw -I../mgui -I../mgeom \
    2525           -I../manalysis -I../mfileio -I../mmc
    2626
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.cc

    r1436 r1438  
    4040
    4141#include "MGeomPix.h"
    42 #include "MHexagon.h"
    4342
    4443ClassImp(MGeomCam);
  • trunk/MagicSoft/Mars/mhist/Makefile

    r1415 r1438  
    2222#  connect the include files defined in the config.mk file
    2323#
    24 INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc -I../mgui -I../mdata
     24INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc \
     25           -I../mgui -I../mgeom -I../mdata
    2526
    2627#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.