EV_Data.cc

Go to the documentation of this file.
00001 //! \file
00002 //!
00003 //! Source file for the EV_Data class.
00004 //!
00005 //! Defines the EV_Data class and the member routines which
00006 //! are used in collecting the information for an event.
00007 //!
00008 //! \author D.K. Hasell
00009 //! \version 1.0
00010 //! \date 2010-10-31
00011 //!
00012 //! \ingroup detector
00013 
00014 // Include the Data header file.
00015 
00016 #include "EV_Data.h"
00017 
00018 // Include the STL header files referenced in this file.
00019 
00020 #include <vector>
00021 
00022 // Include the C++ header files referenced in this file.
00023 
00024 #include <cmath>
00025 #include <math.h>
00026 
00027 // Use the STD namespace.
00028 
00029 using namespace std;
00030 
00031 // Data class 
00032 
00033 ClassImp( EV_Data )
00034 
00035 // Constructor.
00036 
00037 EV_Data::EV_Data() {}
00038 
00039 // Destructor.
00040 
00041 EV_Data::~EV_Data() {}
00042 
00043 // Member functions.
00044 
00045 // Routine to clear the event vectors.
00046 
00047 void EV_Data::Reset() {
00048 
00049    nEV = 0;
00050 
00051 }