Index: trunk/MagicSoft/CvsDoku/body.html
===================================================================
--- trunk/MagicSoft/CvsDoku/body.html	(revision 321)
+++ trunk/MagicSoft/CvsDoku/body.html	(revision 321)
@@ -0,0 +1,445 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="GENERATOR" content="Mozilla/4.51 [en] (X11; I; Linux 2.2.5 i586) [Netscape]">
+   <title> CVS for Magic Software Development </title>
+</head>
+<body>
+<! This is my first attempt at my personal WWW home page.        ><! It has become necessary to create this mainly because my      ><! hotlist has grown into something so extremely large that it   ><! is impossible to find a way through it any longer...          >
+<center>
+<h1>
+<font color="#992277">CVS for Magic Software Development</font></h1></center>
+
+<hr>
+<h3>
+<a NAME="Anchor_Introduction"></a><font color="#FF0000"><font size=+2>Introduction</font></font></h3>
+More than one software developer are involved in the progress of Software
+for the MAGIC telescope. Because the developers are distributed all over
+Europe, a version control system is needed. There exists more than one
+possibility of such version control systems, but for the beginning we take
+CVS ( Concurrent Versions System ).
+<p>CVS is a version control system, which allows you to keep old versions
+of files (usually source code), keep a log of who, when, and why changes
+occurred, etc., like RCS or SCCS. Unlike the simpler systems, CVS does
+not just operate on one file at a time or one directory at a time, but
+operates on hierarchical collections of directories consisting of version
+controlled files. CVS helps to manage releases and to control the concurrent
+editing of source files among multiple authors. CVS allows triggers to
+enable/log/control various operations and works well over a wide area network.
+<p>CVS keeps a single copy of the master sources. This copy is called the
+source ``repository''; it contains all the information to permit extracting
+previous software releases at any time based on either a symbolic revision
+tag, or a date in the past.
+<p>For CVS updates, more information on documentation,&nbsp; software related
+to CVS, development of CVS, and more, see:
+<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.cyclic.com">http://www.cyclic.com</a>
+<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.loria.fr/~molli/cvs-index.html">http://www.loria.fr/~molli/cvs-index.html</a>
+<br>&nbsp;
+<p>
+<hr WIDTH="100%">
+<br><a NAME="Anchor_Repository"></a><b><font color="#FF0000"><font size=+2>Repository</font></font></b>
+<p>The single copy of the master source for all MAGIC software is held
+in the repository on a single (security reasons) linux computer in Max-Planck-Institut
+f&uuml;r Physik in Munich. As a remote developer you must declare the environment
+variable.
+<p><b><font color="#33FF33">setenv&nbsp;&nbsp; CVSROOT&nbsp; :ext:pchegra4.mppmu.mpg.de:/CvsRepository&nbsp;</font></b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+for tcsh (use the syntax of your shell)
+<p><blink>The access from other computers is still under construction and
+tests.</blink>
+<p>If you want access please inform<a href="mailto:harald@hegra1.mppmu.mpg.de">
+Harald Kornmayer&nbsp;</a> in Munich. For more details about the structure
+of the repository see <a href="#Anchor_StructureRepository">here.</a>
+<br>&nbsp;
+<p>
+<hr WIDTH="100%">
+<br><a NAME="Anchor_JustforBeginners"></a><b><font color="#FF0000"><font size=+2>Just
+for Beginners</font></font></b>
+<p>All developers should use CVS commands for further development. I set
+up different projects of software development. Please take only the source
+file from the repository which are necessary for the project you want to
+work on. Please don't work on to much projects in parallel. If you are
+planning to do bigger changes create your own development branch. But don't
+wait to long with committing.
+<br>
+<hr WIDTH="100%">
+<br><a NAME="Anchor_Projects"></a><b><font color="#FF0000"><font size=+2>Projects</font></font></b>
+<p>The software is separated in different software projects. This projects
+are:
+<br>&nbsp;
+<blockquote><font color="#CC6600"><font size=+1>&nbsp;Mmcs (Magic Monte
+Carlo Simulation )</font></font>
+<br>This is the adapted CORSIKA code for calculating air showers.
+<p><font color="#CC6600"><font size=+1>Reflector</font></font>
+<br>With this program you can track the cerenkov photons generated by Mmcs
+to the camera plane. So all the geometry of the telescope is inside this
+program.
+<p><font color="#CC6600"><font size=+1>Camera</font></font>
+<br>To change the information of the cerenkov photons to FADC counts you
+have to use the camera program. This program contains a lot of different
+other sources that are also used by the reflector or the Evita project.
+<p><font color="#CC6600"><font size=+1>Evita (EVent Imaging Tool for Analysis)</font></font>
+<br>To display one event use this nice Gui package.
+<p>.......
+<br>&nbsp;</blockquote>
+It is obvious that some source code of a given directory is part of different
+projects. I.e. the directory include-MC is a part of the reflector and
+the camera project.
+<p>
+<hr WIDTH="100%">
+<br><a NAME="Anchor_Commands"></a><b><font color="#FF0000"><font size=+2>Commands</font></font></b>
+<br>&nbsp;
+<ol>
+<li>
+Continue with development of existing projects</li>
+
+<br>command: cvs checkout <i>project</i>
+<br>Then you will get all the directories that are necessary for compiling
+the given project. So go first in the directory with the Makefile and try
+to compile it. Then you can start with working on the source files. At
+the end of your work you will have modified source files.
+<br>&nbsp;
+<li>
+Check the status of the files in your directory</li>
+
+<br>command: cvs status
+<br>Then you will get a long list with information of all files in this
+directory and all sub directory.
+<br>If you want to see only the names of the modified files use the
+<br>command:cvs status | grep odi
+<br>&nbsp;
+<li>
+See differences of your files and the repository</li>
+
+<br>command: cvs diff <i>[filename]</i>
+<br>This will show you the changed you did.
+<br>&nbsp;
+<li>
+Commit your changes to the repository</li>
+
+<br>command: cvs commit [<i>filename]</i>
+<br>The changes you made will then be in the repository and are available
+for all other developers.
+<br>&nbsp;
+<li>
+Remove all your files</li>
+
+<br>command: cvs release -d [filename]
+<br>Do this in the most upper directory (There you can see i.e. MagicSoft.).
+If CVS find some altered files it will not deleted all immediately. But
+if you have no altered files say yes and delete all the files and directory
+you worked on. So you are always sure that there is no old or changed version
+of a project.</ol>
+
+<hr WIDTH="100%">
+<p><a NAME="Anchor_StructureRepository"></a><font color="#FF0000"><font size=+2>Structure
+of the Repository</font></font>
+<p>All the Software is inside the directory. The structure of the sub directories
+is following one:
+<br>&nbsp;
+<br>&nbsp;
+<table BORDER CELLPADDING=10 COLS=7 WIDTH="100%" NOSAVE >
+<tr>
+<td><font size=+1><a href="#Anchor_MagicSoft">MagicSoft</a></font></td>
+
+<td><font size=+1><a href="#Anchor_CvsDoku">CvsDoku</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td><font size=+1><a href="#Anchor_Simulation">Simulation</a></font></td>
+
+<td><font size=+1><a href="#Anchor_Corsika">Corsika</a></font></td>
+
+<td><font size=+1>Mmcs</font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_Detector">Detector</a></font></td>
+
+<td><font size=+1><a href="#Anchor_Reflector">Reflector</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#anchor_Camera">Camera</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_include-GENERAL">include-GENERAL</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_include-CORSIKA">include-CORSIKA</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_include-MC">include-MC</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_include-MTrigger">include-MTrigger</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_DetData">Data</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td><font size=+1><a href="#Anchor_lib">lib&nbsp;</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td><font size=+1><a href="#Anchor_include-Classes">include-Classes</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr>
+<td></td>
+
+<td><font size=+1><a href="#Anchor_Analysis">Analysis</a></font></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+
+<tr NOSAVE>
+<td NOSAVE></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+
+<td></td>
+</tr>
+</table>
+
+<hr WIDTH="100%">
+<br>&nbsp;
+<h3>
+<font color="#FF0000"><font size=+2>Detail of sub directories in the repository</font></font></h3>
+
+<p><br><a NAME="Anchor_MagicSoft"></a><font color="#CC33CC"><font size=+2>MagicSoft</font></font>
+<p>In this directory of the cvs-repository you find all software that is
+developed for MAGIC using CVS.
+<br>This directory contain four sub directories, CvsDoku, Simulation, Analysis
+and include-Classes.
+<br>&nbsp;
+<blockquote><a NAME="Anchor_CvsDoku"></a><font color="#CC33CC"><font size=+2>CvsDoku</font></font>
+<p>In this directory of the cvs-repository you find some html pages like
+the one you are looking at the moment. This documentation is written as
+a guideline for MAGIC developers using the CVS tool. Also the documentation
+for CVS usage is using CVS!!
+<p><a NAME="Anchor_Simulation"></a><font color="#CC66CC"><font size=+2>Simulation</font></font>
+<br>For MAGIC a lot of programs were developed to simulate the behavior
+of Air Showers, the Mirrors and the Camera. All this things you need for
+simulation is inside this directory.
+<br>&nbsp;
+<blockquote><a NAME="Anchor_Corsika"></a><font color="#CC33CC"><font size=+2>Corsika</font></font>
+<br>All things needed for the simulation of Air Showers. All this simulation
+are based on the CORSIKA program of the KASCADE group in Karlsruhe.
+<br>&nbsp;
+<p><a NAME="Anchor_Detector"></a><font color="#CC33CC"><font size=+2>Detector</font></font>
+<br>&nbsp;Every thing that is needed to transfer the simulated events to
+the common raw data format. There are a lot of different tools inside this
+directory, mainly based on the work of Jose Carlos Gonzales.
+<br>&nbsp;
+<blockquote><a NAME="Anchor_Reflector"></a><font color="#CC33CC"><font size=+2>Reflector</font></font>
+<br>&nbsp;Here you find the source code of the reflector program. This
+is written to read the CORSIKA (Mmcs) output. With this data you can simulate
+the behavior of the MAGIC mirrors. But to compile and run the program some
+other sub directories are needed.
+<p><a NAME="anchor_Camera"></a><font color="#CC66CC"><font size=+2>Camera</font></font>
+<p><font color="#330000">&nbsp;In this directory are all the files of the
+camera program. The camera program is calculating the response of each
+photo multiplier of the camera. At the end we get the number of ADC count
+for each time slice of each pixel. In the previous there were also some
+smaller calculations of the camera pixels in it.</font>
+<p><a NAME="Anchor_include-CORSIKA"></a><font color="#CC33CC"><font size=+2>include-CORSIKA</font></font>
+<br>Here you can find a implementation to read the CORSIKA output. This
+classes are needed by the reflector program.
+<p><a NAME="Anchor_include-MC"></a><font color="#CC33CC"><font size=+2>include-MC</font></font>
+<br>Here you can find a implementation to write and read the output of
+the reflector program. This classes are needed by the reflector and the
+camera program.
+<p><a NAME="Anchor_include-GENERAL"></a><font color="#CC33CC"><font size=+2>include-GENERAL</font></font>
+<br>Here you can find some header file that are needed by reflector and
+camera. For example the declaration of the runlib is found here.
+<br>&nbsp;
+<p><a NAME="Anchor_include-MTrigger"></a><font color="#CC66CC"><font size=+2>include-MTrigger</font></font>
+<br>Studies of the trigger behavior are very fundamental things. The simulation
+of the trigger is a part of the camera program. All the methods are put
+in the Classes (called MTRigger ) in this directory.
+<p><a NAME="Anchor_DetData"></a><font color="#CC33CC"><font size=+2>Data</font></font>
+<br>All the different data files for the simulation tools reflector and
+camera are in this directory. For example the geometry of the MAGIC telescope
+is stored in magic.def or the data of the focal points is stored in focal.dat.
+<p><a NAME="Anchor_lib"></a><font color="#CC33CC"><font size=+2>lib</font></font>
+<br>Here you find the ranlib that is used by reflector and camera.</blockquote>
+</blockquote>
+<a NAME="Anchor_include-Classes"></a><font color="#CC66CC"><font size=+2>include-Classes</font></font>
+<p>In this directory you can find all Classes (C++ and hopefully OOP )
+that are used for simulation and for analysis. An example is the RawDataFormat
+used in the Analysis and the Camera programs. The Classes are MRawPixel,
+MRawEvt, MRawMc .....
+<p><a NAME="Anchor_Analysis"></a><font color="#CC66CC"><font size=+2>Analysis</font></font>
+<p>In this directory you can find all Programs to analyze data of MAGIC.
+Here you will find tools to look on single Events, to calculate the Hillas
+parameters and to find the periodicity of one special source. (But all
+this is still under construction!!!! Here the must development is needed
+in the future!!!)
+<br>&nbsp;</blockquote>
+
+<br>&nbsp;
+</body>
+</html>
Index: trunk/MagicSoft/CvsDoku/content.html
===================================================================
--- trunk/MagicSoft/CvsDoku/content.html	(revision 321)
+++ trunk/MagicSoft/CvsDoku/content.html	(revision 321)
@@ -0,0 +1,48 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="GENERATOR" content="Mozilla/4.51 [en] (X11; I; Linux 2.2.5 i586) [Netscape]">
+   <title> CVS for MAGIC software development </title>
+</head>
+<body text="#FFFFFF" bgcolor="#000000" link="#00FFFF" vlink="#0000FF" alink="#008000" style="helvetica" onLoad="window.defaultStatus=
+'The MAGIC Telescope  -  Munich Group WWW Page - (c) J C Gonzalez, 1998';">
+&nbsp;
+<center>
+<br><b><u><font size=+3>CVS for Magic Software Development</font></u></b></center>
+
+<p>
+<hr><font color="#FF7400"><font size=+2></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html" target="body">Introduction</a></font></font><font color="#FF7400"><font size=+2><a href="body.html"></a></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html#Anchor_Repository" target="body">Repository</a></font></font><font color="#FF7400"><font size=+2></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html#Anchor_JustforBeginners" target="body">For
+Beginners</a></font></font><font color="#FF7400"><font size=+2></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html#Anchor_Projects" target="body">Projects</a></font></font><font color="#FF7400"><font size=+2></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html#Anchor_Commands" target="body">Commands</a></font></font><font color="#FF7400"><font size=+2></font></font>
+<p><font color="#FF7400"><font size=+2><a href="body.html#Anchor_StructureRepository" target="body">Structure
+of the Repository</a></font></font><font color="#FF7400"><font size=+2></font></font>
+<p>
+<hr>
+<br>&nbsp;
+<p><br>
+<p><!-- ------------------------- --><!--
+<br><br>
+<hr>
+<br><br>
+
+<p align="center"></p>
+<center>
+<form name="clock">
+<input type="text" size="8" name="dclock">
+</form></center>
+--><!-- ------------------------- -->
+<p>
+<hr>
+<p><font color="#0000FF"><font size=-2>Last update:</font></font>
+<br><script LANGUAGE="JavaScript">
+document.write(document.lastModified) ;
+</script>
+
+<br><font color="#0000FF"><font size=-2>&copy; J C Gonz&aacute;lez</font></font>
+</body>
+</html>
Index: trunk/MagicSoft/CvsDoku/welcome.html
===================================================================
--- trunk/MagicSoft/CvsDoku/welcome.html	(revision 320)
+++ trunk/MagicSoft/CvsDoku/welcome.html	(revision 321)
@@ -1,445 +1,49 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="GENERATOR" content="Mozilla/4.51 [en] (X11; I; Linux 2.2.5 i586) [Netscape]">
-   <title> CVS for Magic Software Development </title>
-</head>
+<HTML>
+<HEAD>
+ <TITLE>CVS for MAGIC software development </TITLE>
+</HEAD>
+
+<FRAMESET COLS="170,*" BORDER=0 FRAMEBORDER=no>
+
+<FRAME SRC="content.html" NAME="content" MARGINWIDTH="4" 
+NORESIZE SCROLLING=no FRAMEBORDER=no>
+
+<FRAME SRC="body.html" NAME="body" 
+NORESIZE FRAMEBORDER=no>
+
+</FRAMESET>
+
+
+<NOFRAMES>
 <body>
-<! This is my first attempt at my personal WWW home page.        ><! It has become necessary to create this mainly because my      ><! hotlist has grown into something so extremely large that it   ><! is impossible to find a way through it any longer...          >
-<center>
-<h1>
-<font color="#992277">CVS for Magic Software Development</font></h1></center>
+<h1>Sorry, this page needs frames to be viewed.</h1>
+<!--
+<p>
+If you saw this page, please let us know. We had available a 
+non-frames version of this page, which was discontinued. 
+</p>
+-->
+<p>
+If you see this page, your browser does not allow having FRAMES (or
+this option is disabled).<br><br> 
 
-<hr>
-<h3>
-<a NAME="Anchor_Introduction"></a><font color="#FF0000"><font size=+2>Introduction</font></font></h3>
-More than one software developer are involved in the progress of Software
-for the MAGIC telescope. Because the developers are distributed all over
-Europe, a version control system is needed. There exists more than one
-possibility of such version control systems, but for the beginning we take
-CVS ( Concurrent Versions System ).
-<p>CVS is a version control system, which allows you to keep old versions
-of files (usually source code), keep a log of who, when, and why changes
-occurred, etc., like RCS or SCCS. Unlike the simpler systems, CVS does
-not just operate on one file at a time or one directory at a time, but
-operates on hierarchical collections of directories consisting of version
-controlled files. CVS helps to manage releases and to control the concurrent
-editing of source files among multiple authors. CVS allows triggers to
-enable/log/control various operations and works well over a wide area network.
-<p>CVS keeps a single copy of the master sources. This copy is called the
-source ``repository''; it contains all the information to permit extracting
-previous software releases at any time based on either a symbolic revision
-tag, or a date in the past.
-<p>For CVS updates, more information on documentation,&nbsp; software related
-to CVS, development of CVS, and more, see:
-<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.cyclic.com">http://www.cyclic.com</a>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.loria.fr/~molli/cvs-index.html">http://www.loria.fr/~molli/cvs-index.html</a>
-<br>&nbsp;
+You can still visit this site by going to our <a
+href="MAGIC/main.html">Main Page</a>, and navigating from there using
+the bar at the top.
+</p>
 <p>
-<hr WIDTH="100%">
-<br><a NAME="Anchor_Repository"></a><b><font color="#FF0000"><font size=+2>Repository</font></font></b>
-<p>The single copy of the master source for all MAGIC software is held
-in the repository on a single (security reasons) linux computer in Max-Planck-Institut
-f&uuml;r Physik in Munich. As a remote developer you must declare the environment
-variable.
-<p><b><font color="#33FF33">setenv&nbsp;&nbsp; CVSROOT&nbsp; :ext:pchegra4.mppmu.mpg.de:/CvsRepository&nbsp;</font></b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-for tcsh (use the syntax of your shell)
-<p><blink>The access from other computers is still under construction and
-tests.</blink>
-<p>If you want access please inform<a href="mailto:harald@hegra1.mppmu.mpg.de">
-Harald Kornmayer&nbsp;</a> in Munich. For more details about the structure
-of the repository see <a href="#Anchor_StructureRepository">here.</a>
-<br>&nbsp;
-<p>
-<hr WIDTH="100%">
-<br><a NAME="Anchor_JustforBeginners"></a><b><font color="#FF0000"><font size=+2>Just
-for Beginners</font></font></b>
-<p>All developers should use CVS commands for further development. I set
-up different projects of software development. Please take only the source
-file from the repository which are necessary for the project you want to
-work on. Please don't work on to much projects in parallel. If you are
-planning to do bigger changes create your own development branch. But don't
-wait to long with committing.
-<br>
-<hr WIDTH="100%">
-<br><a NAME="Anchor_Projects"></a><b><font color="#FF0000"><font size=+2>Projects</font></font></b>
-<p>The software is separated in different software projects. This projects
-are:
-<br>&nbsp;
-<blockquote><font color="#CC6600"><font size=+1>&nbsp;Mmcs (Magic Monte
-Carlo Simulation )</font></font>
-<br>This is the adapted CORSIKA code for calculating air showers.
-<p><font color="#CC6600"><font size=+1>Reflector</font></font>
-<br>With this program you can track the cerenkov photons generated by Mmcs
-to the camera plane. So all the geometry of the telescope is inside this
-program.
-<p><font color="#CC6600"><font size=+1>Camera</font></font>
-<br>To change the information of the cerenkov photons to FADC counts you
-have to use the camera program. This program contains a lot of different
-other sources that are also used by the reflector or the Evita project.
-<p><font color="#CC6600"><font size=+1>Evita (EVent Imaging Tool for Analysis)</font></font>
-<br>To display one event use this nice Gui package.
-<p>.......
-<br>&nbsp;</blockquote>
-It is obvious that some source code of a given directory is part of different
-projects. I.e. the directory include-MC is a part of the reflector and
-the camera project.
-<p>
-<hr WIDTH="100%">
-<br><a NAME="Anchor_Commands"></a><b><font color="#FF0000"><font size=+2>Commands</font></font></b>
-<br>&nbsp;
-<ol>
-<li>
-Continue with development of existing projects</li>
+Please, send any comment about problems to 
+<A HREF="mailto:gonzalez@mppmu.mpg.de"
+TITLE="e-mail">J C Gonz&aacute;lez</a> 
+(<A HREF="mailto:gonzalez@mppmu.mpg.de"
+TITLE="e-mail">gonzalez@mppmu.mpg.de</A>).
 
-<br>command: cvs checkout <i>project</i>
-<br>Then you will get all the directories that are necessary for compiling
-the given project. So go first in the directory with the Makefile and try
-to compile it. Then you can start with working on the source files. At
-the end of your work you will have modified source files.
-<br>&nbsp;
-<li>
-Check the status of the files in your directory</li>
+<HR>
+<address>
+E-mail: <A HREF="mailto:gonzalez@mppmu.mpg.de"
+TITLE="e-mail">gonzalez@mppmu.mpg.de</A>
+</address>
+</body>
+</NOFRAMES>
 
-<br>command: cvs status
-<br>Then you will get a long list with information of all files in this
-directory and all sub directory.
-<br>If you want to see only the names of the modified files use the
-<br>command:cvs status | grep odi
-<br>&nbsp;
-<li>
-See differences of your files and the repository</li>
-
-<br>command: cvs diff <i>[filename]</i>
-<br>This will show you the changed you did.
-<br>&nbsp;
-<li>
-Commit your changes to the repository</li>
-
-<br>command: cvs commit [<i>filename]</i>
-<br>The changes you made will then be in the repository and are available
-for all other developers.
-<br>&nbsp;
-<li>
-Remove all your files</li>
-
-<br>command: cvs release -d [filename]
-<br>Do this in the most upper directory (There you can see i.e. MagicSoft.).
-If CVS find some altered files it will not deleted all immediately. But
-if you have no altered files say yes and delete all the files and directory
-you worked on. So you are always sure that there is no old or changed version
-of a project.</ol>
-
-<hr WIDTH="100%">
-<p><a NAME="Anchor_StructureRepository"></a><font color="#FF0000"><font size=+2>Structure
-of the Repository</font></font>
-<p>All the Software is inside the directory. The structure of the sub directories
-is following one:
-<br>&nbsp;
-<br>&nbsp;
-<table BORDER CELLPADDING=10 COLS=7 WIDTH="100%" NOSAVE >
-<tr>
-<td><font size=+1><a href="#Anchor_MagicSoft">MagicSoft</a></font></td>
-
-<td><font size=+1><a href="#Anchor_CvsDoku">CvsDoku</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td><font size=+1><a href="#Anchor_Simulation">Simulation</a></font></td>
-
-<td><font size=+1><a href="#Anchor_Corsika">Corsika</a></font></td>
-
-<td><font size=+1>Mmcs</font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_Detector">Detector</a></font></td>
-
-<td><font size=+1><a href="#Anchor_Reflector">Reflector</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#anchor_Camera">Camera</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_include-GENERAL">include-GENERAL</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_include-CORSIKA">include-CORSIKA</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_include-MC">include-MC</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_include-MTrigger">include-MTrigger</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_DetData">Data</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td><font size=+1><a href="#Anchor_lib">lib&nbsp;</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td><font size=+1><a href="#Anchor_include-Classes">include-Classes</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-
-<td><font size=+1><a href="#Anchor_Analysis">Analysis</a></font></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-
-<tr NOSAVE>
-<td NOSAVE></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-
-<td></td>
-</tr>
-</table>
-
-<hr WIDTH="100%">
-<br>&nbsp;
-<h3>
-<font color="#FF0000"><font size=+2>Detail of sub directories in the repository</font></font></h3>
-
-<p><br><a NAME="Anchor_MagicSoft"></a><font color="#CC33CC"><font size=+2>MagicSoft</font></font>
-<p>In this directory of the cvs-repository you find all software that is
-developed for MAGIC using CVS.
-<br>This directory contain four sub directories, CvsDoku, Simulation, Analysis
-and include-Classes.
-<br>&nbsp;
-<blockquote><a NAME="Anchor_CvsDoku"></a><font color="#CC33CC"><font size=+2>CvsDoku</font></font>
-<p>In this directory of the cvs-repository you find some html pages like
-the one you are looking at the moment. This documentation is written as
-a guideline for MAGIC developers using the CVS tool. Also the documentation
-for CVS usage is using CVS!!
-<p><a NAME="Anchor_Simulation"></a><font color="#CC66CC"><font size=+2>Simulation</font></font>
-<br>For MAGIC a lot of programs were developed to simulate the behavior
-of Air Showers, the Mirrors and the Camera. All this things you need for
-simulation is inside this directory.
-<br>&nbsp;
-<blockquote><a NAME="Anchor_Corsika"></a><font color="#CC33CC"><font size=+2>Corsika</font></font>
-<br>All things needed for the simulation of Air Showers. All this simulation
-are based on the CORSIKA program of the KASCADE group in Karlsruhe.
-<br>&nbsp;
-<p><a NAME="Anchor_Detector"></a><font color="#CC33CC"><font size=+2>Detector</font></font>
-<br>&nbsp;Every thing that is needed to transfer the simulated events to
-the common raw data format. There are a lot of different tools inside this
-directory, mainly based on the work of Jose Carlos Gonzales.
-<br>&nbsp;
-<blockquote><a NAME="Anchor_Reflector"></a><font color="#CC33CC"><font size=+2>Reflector</font></font>
-<br>&nbsp;Here you find the source code of the reflector program. This
-is written to read the CORSIKA (Mmcs) output. With this data you can simulate
-the behavior of the MAGIC mirrors. But to compile and run the program some
-other sub directories are needed.
-<p><a NAME="anchor_Camera"></a><font color="#CC66CC"><font size=+2>Camera</font></font>
-<p><font color="#330000">&nbsp;In this directory are all the files of the
-camera program. The camera program is calculating the response of each
-photo multiplier of the camera. At the end we get the number of ADC count
-for each time slice of each pixel. In the previous there were also some
-smaller calculations of the camera pixels in it.</font>
-<p><a NAME="Anchor_include-CORSIKA"></a><font color="#CC33CC"><font size=+2>include-CORSIKA</font></font>
-<br>Here you can find a implementation to read the CORSIKA output. This
-classes are needed by the reflector program.
-<p><a NAME="Anchor_include-MC"></a><font color="#CC33CC"><font size=+2>include-MC</font></font>
-<br>Here you can find a implementation to write and read the output of
-the reflector program. This classes are needed by the reflector and the
-camera program.
-<p><a NAME="Anchor_include-GENERAL"></a><font color="#CC33CC"><font size=+2>include-GENERAL</font></font>
-<br>Here you can find some header file that are needed by reflector and
-camera. For example the declaration of the runlib is found here.
-<br>&nbsp;
-<p><a NAME="Anchor_include-MTrigger"></a><font color="#CC66CC"><font size=+2>include-MTrigger</font></font>
-<br>Studies of the trigger behavior are very fundamental things. The simulation
-of the trigger is a part of the camera program. All the methods are put
-in the Classes (called MTRigger ) in this directory.
-<p><a NAME="Anchor_DetData"></a><font color="#CC33CC"><font size=+2>Data</font></font>
-<br>All the different data files for the simulation tools reflector and
-camera are in this directory. For example the geometry of the MAGIC telescope
-is stored in magic.def or the data of the focal points is stored in focal.dat.
-<p><a NAME="Anchor_lib"></a><font color="#CC33CC"><font size=+2>lib</font></font>
-<br>Here you find the ranlib that is used by reflector and camera.</blockquote>
-</blockquote>
-<a NAME="Anchor_include-Classes"></a><font color="#CC66CC"><font size=+2>include-Classes</font></font>
-<p>In this directory you can find all Classes (C++ and hopefully OOP )
-that are used for simulation and for analysis. An example is the RawDataFormat
-used in the Analysis and the Camera programs. The Classes are MRawPixel,
-MRawEvt, MRawMc .....
-<p><a NAME="Anchor_Analysis"></a><font color="#CC66CC"><font size=+2>Analysis</font></font>
-<p>In this directory you can find all Programs to analyze data of MAGIC.
-Here you will find tools to look on single Events, to calculate the Hillas
-parameters and to find the periodicity of one special source. (But all
-this is still under construction!!!! Here the must development is needed
-in the future!!!)
-<br>&nbsp;</blockquote>
-
-<br>&nbsp;
-</body>
-</html>
+</HTML>
