Warning, file /include/Rivet/Projections/ParisiTensor.hh was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002 #ifndef RIVET_ParisiTensor_HH
0003 #define RIVET_ParisiTensor_HH
0004
0005 #include "Rivet/Projection.hh"
0006 #include "Rivet/Projections/FinalState.hh"
0007 #include "Rivet/Projections/Sphericity.hh"
0008 #include "Rivet/Event.hh"
0009
0010 namespace Rivet {
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039 class ParisiTensor : public Projection {
0040 public:
0041
0042
0043 ParisiTensor(const FinalState& fsp)
0044 {
0045 setName("ParisiTensor");
0046 declare(fsp, "FS");
0047 declare(Sphericity(fsp, 1.0), "Sphericity");
0048 clear();
0049 }
0050
0051
0052 RIVET_DEFAULT_PROJ_CLONE(ParisiTensor);
0053
0054
0055 using Projection::operator =;
0056
0057
0058 protected:
0059
0060
0061 void project(const Event& e);
0062
0063
0064 CmpState compare(const Projection& p) const;
0065
0066
0067 public:
0068
0069
0070 void clear();
0071
0072
0073 public:
0074
0075
0076
0077 double C() const { return _C; }
0078 double D() const { return _D; }
0079
0080
0081
0082
0083 double lambda1() const { return _lambda[0]; }
0084 double lambda2() const { return _lambda[1]; }
0085 double lambda3() const { return _lambda[2]; }
0086
0087
0088
0089 protected:
0090
0091
0092 double _C, _D;
0093
0094
0095 double _lambda[3];
0096
0097 };
0098
0099
0100 }
0101
0102 #endif