Skip to content

Commit 7501f22

Browse files
committed
math: Remove commented out code for PtEtaPhiMSystem EEtaPhiMSystem.
This finishes their removal started by commit 7a2f771 in 2005
1 parent 8b3840f commit 7501f22

File tree

4 files changed

+2
-51
lines changed

4 files changed

+2
-51
lines changed

math/genvector/inc/Math/GenVector/PtEtaPhiM4D.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Header file for class PtEtaPhiM4D
1212
//
1313
// Created by: fischler at Wed Jul 21 2005
14-
// Similar to PtEtaPhiMSystem by moneta
14+
// Successor to PtEtaPhiMSystem by moneta
1515
//
1616
// Last update: $Id$
1717
//

math/genvector/inc/Math/LinkDef_GenVector.h

-34
Original file line numberDiff line numberDiff line change
@@ -274,23 +274,6 @@
274274
#pragma read sourceClass="ROOT::Math::PtEtaPhiM4D<Float16_t>" \
275275
targetClass="ROOT::Math::PtEtaPhiM4D<double>";
276276

277-
//#pragma link C++ class ROOT::Math::EEtaPhiMSystem<double>+;
278-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Double32_t>" \
279-
targetClass="ROOT::Math::EEtaPhiMSystem<double>";
280-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<float>" \
281-
targetClass="ROOT::Math::EEtaPhiMSystem<double>";
282-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Float16_t>" \
283-
targetClass="ROOT::Math::EEtaPhiMSystem<double>";
284-
285-
//#pragma link C++ class ROOT::Math::PtEtaPhiMSystem<double>+;
286-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Double32_t>" \
287-
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";
288-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<float>" \
289-
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";
290-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Float16_t>" \
291-
targetClass="ROOT::Math::PtEtaPhiMSystem<double>";
292-
293-
294277
#pragma link C++ class ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >+;
295278
#pragma read sourceClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<Double32_t> >" \
296279
targetClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >";
@@ -583,23 +566,6 @@
583566
#pragma read sourceClass="ROOT::Math::PtEtaPhiM4D<Float16_t>" \
584567
targetClass="ROOT::Math::PtEtaPhiM4D<float>";
585568

586-
//#pragma link C++ class ROOT::Math::EEtaPhiMSystem<float>+;
587-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<double>" \
588-
targetClass="ROOT::Math::EEtaPhiMSystem<float>";
589-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Double32_t>" \
590-
targetClass="ROOT::Math::EEtaPhiMSystem<float>";
591-
#pragma read sourceClass="ROOT::Math::EEtaPhiMSystem<Float16_t>" \
592-
targetClass="ROOT::Math::EEtaPhiMSystem<float>";
593-
594-
//#pragma link C++ class ROOT::Math::PtEtaPhiMSystem<float>+;
595-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<double>" \
596-
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";
597-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Double32_t>" \
598-
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";
599-
#pragma read sourceClass="ROOT::Math::PtEtaPhiMSystem<Float16_t>" \
600-
targetClass="ROOT::Math::PtEtaPhiMSystem<float>";
601-
602-
603569
#pragma link C++ class ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> >+;
604570
#pragma read sourceClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >" \
605571
targetClass="ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> >";

math/genvector/inc/Math/Vector4D.h

+1-7
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,15 @@
77
// defines typedefs to specific vectors and forward declarations
88
// define additional (to Cartesian) coordinate system types
99
#include "Math/Vector4Dfwd.h"
10-
// generic LorentzVector class definition
1110

11+
// generic LorentzVector class definition
1212
#include "Math/GenVector/PxPyPzE4D.h"
1313
#include "Math/GenVector/PtEtaPhiE4D.h"
1414
#include "Math/GenVector/PxPyPzM4D.h"
1515
#include "Math/GenVector/PtEtaPhiM4D.h"
1616

17-
1817
#include "Math/GenVector/LorentzVector.h"
1918

20-
//#include "Math/GenVector/PtEtaPhiMSystem.h"
21-
//#include "Math/GenVector/EEtaPhiMSystem.h"
22-
23-
24-
2519
#endif
2620

2721

math/genvector/inc/Math/Vector4Dfwd.h

-9
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ namespace ROOT {
3131
template<typename T> class PtEtaPhiE4D;
3232
template<typename T> class PxPyPzM4D;
3333
template<typename T> class PtEtaPhiM4D;
34-
// template<typename T> class EEtaPhiMSystem;
35-
3634

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

@@ -85,13 +83,6 @@ namespace ROOT {
8583
*/
8684
typedef LorentzVector<PtEtaPhiM4D<double> > PtEtaPhiMVector;
8785

88-
// /**
89-
// 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.
90-
// */
91-
// typedef BasicLorentzVector<EEtaPhiMSystem<double> > LorentzVectorEEtaPhiM;
92-
93-
94-
9586
} // end namespace Math
9687

9788
} // end namespace ROOT

0 commit comments

Comments
 (0)