Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

math: Remove commented out code for PtEtaPhiMSystem EEtaPhiMSystem. #17562

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion math/genvector/inc/Math/GenVector/PtEtaPhiM4D.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// Header file for class PtEtaPhiM4D
//
// Created by: fischler at Wed Jul 21 2005
// Similar to PtEtaPhiMSystem by moneta
// Successor to PtEtaPhiMSystem by moneta
//
// Last update: $Id$
//
Expand Down
34 changes: 0 additions & 34 deletions math/genvector/inc/Math/LinkDef_GenVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,23 +274,6 @@
#pragma read sourceClass="ROOT::Math::PtEtaPhiM4D<Float16_t>" \
targetClass="ROOT::Math::PtEtaPhiM4D<double>";

//#pragma link C++ class ROOT::Math::EEtaPhiMSystem<double>+;
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Double32_t>" \
targetClass="ROOT::Math::EEtaPhiMSystem<double>";
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<float>" \
targetClass="ROOT::Math::EEtaPhiMSystem<double>";
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Float16_t>" \
targetClass="ROOT::Math::EEtaPhiMSystem<double>";

//#pragma link C++ class ROOT::Math::PtEtaPhiMSystem<double>+;
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Double32_t>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<float>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Float16_t>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";


#pragma link C++ class ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >+;
#pragma read sourceClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<Double32_t> >" \
targetClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >";
Expand Down Expand Up @@ -583,23 +566,6 @@
#pragma read sourceClass="ROOT::Math::PtEtaPhiM4D<Float16_t>" \
targetClass="ROOT::Math::PtEtaPhiM4D<float>";

//#pragma link C++ class ROOT::Math::EEtaPhiMSystem<float>+;
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<double>" \
targetClass="ROOT::Math::EEtaPhiMSystem<float>";
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Double32_t>" \
targetClass="ROOT::Math::EEtaPhiMSystem<float>";
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Float16_t>" \
targetClass="ROOT::Math::EEtaPhiMSystem<float>";

//#pragma link C++ class ROOT::Math::PtEtaPhiMSystem<float>+;
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<double>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Double32_t>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Float16_t>" \
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";


#pragma link C++ class ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> >+;
#pragma read sourceClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >" \
targetClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> >";
Expand Down
8 changes: 1 addition & 7 deletions math/genvector/inc/Math/Vector4D.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,15 @@
// defines typedefs to specific vectors and forward declarations
// define additional (to Cartesian) coordinate system types
#include "Math/Vector4Dfwd.h"
// generic LorentzVector class definition

// generic LorentzVector class definition
#include "Math/GenVector/PxPyPzE4D.h"
#include "Math/GenVector/PtEtaPhiE4D.h"
#include "Math/GenVector/PxPyPzM4D.h"
#include "Math/GenVector/PtEtaPhiM4D.h"


#include "Math/GenVector/LorentzVector.h"

//#include "Math/GenVector/PtEtaPhiMSystem.h"
//#include "Math/GenVector/EEtaPhiMSystem.h"



#endif


Expand Down
9 changes: 0 additions & 9 deletions math/genvector/inc/Math/Vector4Dfwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ namespace ROOT {
template<typename T> class PtEtaPhiE4D;
template<typename T> class PxPyPzM4D;
template<typename T> class PtEtaPhiM4D;
// template<typename T> class EEtaPhiMSystem;


// for LorentzVector have only double classes (define the vector in the global ref frame)

Expand Down Expand Up @@ -85,13 +83,6 @@ namespace ROOT {
*/
typedef LorentzVector<PtEtaPhiM4D<double> > PtEtaPhiMVector;

// /**
// LorentzVector based on the coordinates E, Eta, Phi and Mass in double precision. These coordinates are normally used to represents a cluster objects in a calorimeter at a collider experiment.
// */
// typedef BasicLorentzVector<EEtaPhiMSystem<double> > LorentzVectorEEtaPhiM;



} // end namespace Math

} // end namespace ROOT
Expand Down
Loading