]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STARLIGHT/starlight/include/.svn/text-base/pythiadecayer.h.svn-base
Removing some SVN-related files
[u/mrichter/AliRoot.git] / STARLIGHT / starlight / include / .svn / text-base / pythiadecayer.h.svn-base
diff --git a/STARLIGHT/starlight/include/.svn/text-base/pythiadecayer.h.svn-base b/STARLIGHT/starlight/include/.svn/text-base/pythiadecayer.h.svn-base
deleted file mode 100644 (file)
index b3713c2..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef PYTHIADECAYER_H
-#define PYTHIADECAYER_H
-
-#include "Pythia.h"
-#include "starlightparticle.h"
-#include "upcevent.h"
-
-class pythiaDecayer
-{
-
-public:
-
-    // Default constructor
-    pythiaDecayer();
-
-    // Copy constructor
-//     pythiaDecayer(const pythiaDecayer &obj);
-
-    // Destructor
-    virtual ~pythiaDecayer();
-
-    // Assignment operator
-//     pythiaDecayer& operator=(const pythiaDecayer& other);
-
-    // Initialise
-    void init();
-    
-    // Add particle to current event
-    void addParticle(const starlightParticle &p);
-    
-    // Execute event and return starlight type event
-    upcEvent execute();
-
-
-private:
-
-    Pythia8::Pythia _pythia;
-    
-    // Prohibited
-    pythiaDecayer(Pythia8::Pythia pythia);
-    bool operator==(const pythiaDecayer &other) const;
-
-};
-#endif // PYTHIADECAYER_H