Skip to content

Commit eb82435

Browse files
committed
[roottest] rm old CINT remnants
1 parent 56dcb06 commit eb82435

File tree

271 files changed

+466
-466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+466
-466
lines changed

roottest/cling/const/constissue.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
int get_histogram(char const* , char const* ){return 0; }
22
template<class T> void get_histogram(T const & t, char const * name);
3-
#ifdef __CINT__
3+
#ifdef __CLING__
44
// Can't remember what this is actually testing but it should not do
55
// any harm anyway!
66
#pragma link C++ function get_histogram;
@@ -16,7 +16,7 @@ class TriggerCharacterizer {
1616
trigger_counting_map m_map;
1717
};
1818

19-
#ifdef __CINT__
19+
#ifdef __CLING__
2020
//#pragma link C++ class TriggerCharacterizer::trigger_counting_map;
2121
#endif
2222

roottest/cling/dict/algebra3

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
namespace aux {
2020

21-
#ifndef __CINT__
21+
#ifndef __CLING__
2222
using std::size_t;
2323
using std::complex;
2424
using std::istream;
@@ -32,7 +32,7 @@ namespace aux {
3232
using std::sin;
3333
// using std::conj;
3434
using std::norm;
35-
#endif /* __CINT__ */
35+
#endif /* __CLING__ */
3636

3737
/* ****************** algebra3.h begins here ****************** */
3838

@@ -710,7 +710,7 @@ namespace aux {
710710
// Implementation
711711
//
712712

713-
#ifndef __CINT__
713+
#ifndef __CLING__
714714

715715
/****************************************************************
716716
* *
@@ -1999,7 +1999,7 @@ namespace aux {
19991999
((_Tp)0), ((_Tp)0), ((_Tp)1), ((_Tp)0),
20002000
((_Tp)0), ((_Tp)0), ((_Tp)1) / d, ((_Tp)0)); }
20012001

2002-
#endif /* __CINT__ */
2002+
#endif /* __CLING__ */
20032003

20042004
/* ******************* algebra3.h ends here ******************* */
20052005

@@ -2041,7 +2041,7 @@ namespace aux {
20412041
template<typename _Tp> mat3<_Tp> ExtractRotation(const mat4<_Tp>& pose); // extract rotation matrix from transformation matrix
20422042
template<typename _Tp> typename rtti<_Tp>::value_type PointToPlane(const vec3<_Tp>& point, const vec4<_Tp>& plane); // unsigned distance from a point to a plane (3D)
20432043

2044-
#ifndef __CINT__
2044+
#ifndef __CLING__
20452045

20462046
//
20472047
// rotation2D -- convert 2x2 rotation matrix to 3x3
@@ -2176,7 +2176,7 @@ namespace aux {
21762176
return dist;
21772177
}
21782178

2179-
#endif /* __CINT__ */
2179+
#endif /* __CLING__ */
21802180

21812181
#ifdef fmin
21822182
#undef fmin // allow as function names

roottest/cling/dict/operators_dict.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "operators.h"
22

3-
#ifdef __MAKECINT__
3+
#ifdef __MAKECLING__
44
#pragma link C++ class myiterator;
55
#pragma link C++ operators myiterator;
66
#endif
@@ -12,14 +12,14 @@ namespace enclosing {
1212
#include "operators.h"
1313
}
1414

15-
#ifdef __MAKECINT__
15+
#ifdef __MAKECLING__
1616
#pragma link C++ class enclosing::myiterator;
1717
#pragma link C++ operators enclosing::myiterator;
1818
#endif
1919
#endif
2020

2121
#include <vector>
22-
#ifdef __MAKECINT__
22+
#ifdef __MAKECLING__
2323
#pragma link C++ class vector<myiterator>;
2424
#pragma link C++ class vector<myiterator>::const_iterator;
2525
#pragma link C++ class vector<myiterator>::iterator;

0 commit comments

Comments
 (0)