file /home/anarendran/Documents/temp/rivet/include/Rivet/Projections/AxesDefinition.hh
/home/anarendran/Documents/temp/rivet/include/Rivet/Projections/AxesDefinition.hh
Namespaces
Name |
---|
Rivet |
Classes
Name | |
---|---|
class | Rivet::AxesDefinition Base class for projections which define a spatial basis. |
Source code
// -*- C++ -*-
#ifndef RIVET_AxesDefinition_HH
#define RIVET_AxesDefinition_HH
#include "Rivet/Projection.hh"
#include "Rivet/Event.hh"
namespace Rivet {
class AxesDefinition : public Projection {
public:
virtual ~AxesDefinition() { }
virtual unique_ptr<Projection> clone() const = 0;
virtual const Vector3& axis1() const = 0;
virtual const Vector3& axis2() const = 0;
virtual const Vector3& axis3() const = 0;
};
}
#endif
Updated on 2022-08-07 at 20:17:18 +0100