TF_Data.cc

Go to the documentation of this file.
00001 //! \file
00002 //!
00003 //! Source file for the TF_Data class.
00004 //!
00005 //! Defines the TF_Data class and the member routines which
00006 //! are used in collecting the information for a given event.
00007 //!
00008 //! \author D.K. Hasell
00009 //! \version 1.0
00010 //! \date 2010-10-30
00011 //!
00012 //! \ingroup detector
00013 
00014 // Include the TF_Data header file.
00015 
00016 #include "TF_Data.h"
00017 
00018 // Include the STL header files referenced in this file.
00019 
00020 #include <vector>
00021 
00022 // Use the STD namespace.
00023 
00024 using namespace std;
00025 
00026 // TF_Data class 
00027 
00028 ClassImp( TF_Data )
00029 
00030 // Constructor.
00031 
00032 TF_Data::TF_Data() {}
00033 
00034 // Destructor.
00035 
00036 TF_Data::~TF_Data() {}
00037 
00038 // Member functions.
00039 
00040 // Routine to clear the event vectors.
00041 
00042 void TF_Data::Reset() {
00043 
00044    nTF = 0;
00045 
00046    id.clear();
00047    tr.clear();
00048 
00049    e.clear();
00050    tt.clear();
00051    t.clear();
00052 
00053    tx.clear();
00054    ty.clear();
00055    tz.clear();
00056 
00057    txl.clear();
00058    tyl.clear();
00059    tzl.clear();
00060 
00061    x.clear();
00062    y.clear();
00063    z.clear();
00064 
00065    xl.clear();
00066    yl.clear();
00067    zl.clear();
00068 
00069 }