]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STARLIGHT/starlight/include/.svn/text-base/starlightparticle.h.svn-base
Removing some SVN-related files
[u/mrichter/AliRoot.git] / STARLIGHT / starlight / include / .svn / text-base / starlightparticle.h.svn-base
diff --git a/STARLIGHT/starlight/include/.svn/text-base/starlightparticle.h.svn-base b/STARLIGHT/starlight/include/.svn/text-base/starlightparticle.h.svn-base
deleted file mode 100644 (file)
index a476c51..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-///////////////////////////////////////////////////////////////////////////
-//
-//    Copyright 2010
-//
-//    This file is part of starlight.
-//
-//    starlight is free software: you can redistribute it and/or modify
-//    it under the terms of the GNU General Public License as published by
-//    the Free Software Foundation, either version 3 of the License, or
-//    (at your option) any later version.
-//
-//    starlight is distributed in the hope that it will be useful,
-//    but WITHOUT ANY WARRANTY; without even the implied warranty of
-//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-//    GNU General Public License for more details.
-//
-//    You should have received a copy of the GNU General Public License
-//    along with starlight. If not, see <http://www.gnu.org/licenses/>.
-//
-///////////////////////////////////////////////////////////////////////////
-//
-// File and Version Information:
-// $Rev::                             $: revision of last commit
-// $Author::                          $: author of last commit
-// $Date::                            $: date of last commit
-//
-// Description:
-//
-//
-//
-///////////////////////////////////////////////////////////////////////////
-
-
-#ifndef STARLIGHTPARTICLE_H
-#define STARLIGHTPARTICLE_H
-
-
-#include "lorentzvector.h"
-
-
-class starlightParticle : public lorentzVector
-{
-   public:
-      
-      starlightParticle();
-      starlightParticle ( double px, double py, double pz, double e, double mass, int pdgCode, short charge, 
-                         double vx = 0., double vy = 0, double vz = 0, double vt = 0,
-                         int firstParent = 0, int lastParent = 0, int firstDaughter = 0, int lastDaughter = 0, int status = 0);
-      virtual ~starlightParticle();
-   
-      void setPdgCode(int pdgCode) { _pdgCode = pdgCode; }
-      int getPdgCode() const { return _pdgCode; }
-      
-      void setCharge(short charge) { _charge = charge; }
-      short getCharge() const { return _charge; }
-      
-      void setFirstParent(int parent) { _firstParent = parent; }
-      void setLastParent(int parent) { _lastParent = parent; }
-      int getFirstParent() const { return _firstParent; }
-      int getLastParent() const { return _lastParent; }
-      
-      void setFirstDaughter(int first) { _firstDaughter = first; }
-      int getFirstDaughter() const { return _firstDaughter; }
-      
-      void setLastDaughter(int first) { _lastDaughter = first; }
-      int getLastDaughter() const { return _lastDaughter; }
-      
-      void setStatus(int status) { _status = status; }
-      int getStatus() const { return _status; }
-      
-      void setVertex(lorentzVector v) { _vertex = v; }
-      lorentzVector getVertex() const { return _vertex; }
-      
-   private:
-     
-    lorentzVector _vertex;
-    
-    int _pdgCode;
-    short _charge;
-    double _mass;
-    
-    int _firstParent;
-    int _lastParent;
-    int _firstDaughter;
-    int _lastDaughter;
-
-    int _status;
-  
-};
-
-
-#endif  // STARLIGHTPARTICLE_H