Skip to content

Commit e62cdfa

Browse files
committed
set version to 0.3.1
code generated with ROOT.jl-generator 8c7a72765dd58253613054728af7d9a78dce69da Upgrade to ROOT 6.32.02
1 parent a9a9261 commit e62cdfa

24 files changed

+3134
-2751
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ROOT"
22
uuid = "1706fdcc-8426-44f1-a283-5be479e9517c"
3-
version = "0.3.1-DEV"
3+
version = "0.3.1"
44
authors = ["Philippe Gras CEA/IRFU"]
55

66
[deps]

deps/build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const JL_SHARE = joinpath(Sys.BINDIR, Base.DATAROOTDIR, "julia")
99
const JULIA = joinpath(Sys.BINDIR, "julia")
1010
const libname="libjlROOT." * Libdl.dlext
1111

12-
const conda_root_version = "6.30.04"
12+
const conda_root_version = "6.32.02"
1313
const supported_root_versions = [ conda_root_version ]
1414

1515
used_root_version = ""

deps/src/JlClasses_001.cxx

Lines changed: 36 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -358,44 +358,54 @@ struct JlTObject: public Wrapper {
358358
// defined in /home/pgras/.julia/conda/3/include/TObject.h:186:13
359359
module_.method("TObject!delete[]", static_cast<void (*)(void *) >(&TObject::operator delete[]));
360360

361+
DEBUG_MSG("Adding wrapper for void TObject::operator delete(void *, size_t) (" __HERE__ ")");
362+
// signature to use in the veto list: void TObject::operator delete(void *, size_t)
363+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:189:13
364+
module_.method("TObject!delete", static_cast<void (*)(void *, size_t) >(&TObject::operator delete));
365+
366+
DEBUG_MSG("Adding wrapper for void TObject::operator delete[](void *, size_t) (" __HERE__ ")");
367+
// signature to use in the veto list: void TObject::operator delete[](void *, size_t)
368+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:190:13
369+
module_.method("TObject!delete[]", static_cast<void (*)(void *, size_t) >(&TObject::operator delete[]));
370+
361371
DEBUG_MSG("Adding wrapper for void TObject::operator delete(void *, void *) (" __HERE__ ")");
362372
// signature to use in the veto list: void TObject::operator delete(void *, void *)
363-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:193:13
373+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:192:13
364374
module_.method("TObject!delete", static_cast<void (*)(void *, void *) >(&TObject::operator delete));
365375

366376
DEBUG_MSG("Adding wrapper for void TObject::operator delete[](void *, void *) (" __HERE__ ")");
367377
// signature to use in the veto list: void TObject::operator delete[](void *, void *)
368-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:194:13
378+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:193:13
369379
module_.method("TObject!delete[]", static_cast<void (*)(void *, void *) >(&TObject::operator delete[]));
370380

371381
DEBUG_MSG("Adding wrapper for void TObject::SetBit(UInt_t, Bool_t) (" __HERE__ ")");
372382
// signature to use in the veto list: void TObject::SetBit(UInt_t, Bool_t)
373-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:198:13
383+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:196:13
374384
t.method("SetBit", static_cast<void (TObject::*)(UInt_t, Bool_t) >(&TObject::SetBit));
375385

376386
DEBUG_MSG("Adding wrapper for void TObject::SetBit(UInt_t) (" __HERE__ ")");
377387
// signature to use in the veto list: void TObject::SetBit(UInt_t)
378-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:199:13
388+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:197:13
379389
t.method("SetBit", static_cast<void (TObject::*)(UInt_t) >(&TObject::SetBit));
380390

381391
DEBUG_MSG("Adding wrapper for void TObject::ResetBit(UInt_t) (" __HERE__ ")");
382392
// signature to use in the veto list: void TObject::ResetBit(UInt_t)
383-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:200:13
393+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:198:13
384394
t.method("ResetBit", static_cast<void (TObject::*)(UInt_t) >(&TObject::ResetBit));
385395

386396
DEBUG_MSG("Adding wrapper for Bool_t TObject::TestBit(UInt_t) (" __HERE__ ")");
387397
// signature to use in the veto list: Bool_t TObject::TestBit(UInt_t)
388-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:201:28
398+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:199:28
389399
t.method("TestBit", static_cast<Bool_t (TObject::*)(UInt_t) const>(&TObject::TestBit));
390400

391401
DEBUG_MSG("Adding wrapper for Int_t TObject::TestBits(UInt_t) (" __HERE__ ")");
392402
// signature to use in the veto list: Int_t TObject::TestBits(UInt_t)
393-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:202:13
403+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:200:13
394404
t.method("TestBits", static_cast<Int_t (TObject::*)(UInt_t) const>(&TObject::TestBits));
395405

396406
DEBUG_MSG("Adding wrapper for void TObject::InvertBit(UInt_t) (" __HERE__ ")");
397407
// signature to use in the veto list: void TObject::InvertBit(UInt_t)
398-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:203:13
408+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:201:13
399409
t.method("InvertBit", static_cast<void (TObject::*)(UInt_t) >(&TObject::InvertBit));
400410

401411

@@ -405,92 +415,92 @@ struct JlTObject: public Wrapper {
405415

406416
DEBUG_MSG("Adding wrapper for void TObject::AbstractMethod(const char *) (" __HERE__ ")");
407417
// signature to use in the veto list: void TObject::AbstractMethod(const char *)
408-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:232:13
418+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:230:13
409419
t.method("AbstractMethod", static_cast<void (TObject::*)(const char *) const>(&TObject::AbstractMethod));
410420

411421
DEBUG_MSG("Adding wrapper for void TObject::MayNotUse(const char *) (" __HERE__ ")");
412422
// signature to use in the veto list: void TObject::MayNotUse(const char *)
413-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:233:13
423+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:231:13
414424
t.method("MayNotUse", static_cast<void (TObject::*)(const char *) const>(&TObject::MayNotUse));
415425

416426
DEBUG_MSG("Adding wrapper for void TObject::Obsolete(const char *, const char *, const char *) (" __HERE__ ")");
417427
// signature to use in the veto list: void TObject::Obsolete(const char *, const char *, const char *)
418-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:234:13
428+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:232:13
419429
t.method("Obsolete", static_cast<void (TObject::*)(const char *, const char *, const char *) const>(&TObject::Obsolete));
420430

421431
DEBUG_MSG("Adding wrapper for Longptr_t TObject::GetDtorOnly() (" __HERE__ ")");
422432
// signature to use in the veto list: Longptr_t TObject::GetDtorOnly()
423-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:237:21
433+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:235:21
424434
module_.method("TObject!GetDtorOnly", static_cast<Longptr_t (*)() >(&TObject::GetDtorOnly));
425435

426436
DEBUG_MSG("Adding wrapper for void TObject::SetDtorOnly(void *) (" __HERE__ ")");
427437
// signature to use in the veto list: void TObject::SetDtorOnly(void *)
428-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:238:21
438+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:236:21
429439
module_.method("TObject!SetDtorOnly", static_cast<void (*)(void *) >(&TObject::SetDtorOnly));
430440

431441
DEBUG_MSG("Adding wrapper for Bool_t TObject::GetObjectStat() (" __HERE__ ")");
432442
// signature to use in the veto list: Bool_t TObject::GetObjectStat()
433-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:239:21
443+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:237:21
434444
module_.method("TObject!GetObjectStat", static_cast<Bool_t (*)() >(&TObject::GetObjectStat));
435445

436446
DEBUG_MSG("Adding wrapper for void TObject::SetObjectStat(Bool_t) (" __HERE__ ")");
437447
// signature to use in the veto list: void TObject::SetObjectStat(Bool_t)
438-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:240:21
448+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:238:21
439449
module_.method("TObject!SetObjectStat", static_cast<void (*)(Bool_t) >(&TObject::SetObjectStat));
440450

441451
DEBUG_MSG("Adding wrapper for Version_t TObject::Class_Version() (" __HERE__ ")");
442452
// signature to use in the veto list: Version_t TObject::Class_Version()
443-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
453+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
444454
module_.method("TObject!Class_Version", static_cast<Version_t (*)() >(&TObject::Class_Version));
445455

446456
DEBUG_MSG("Adding wrapper for TClass * TObject::IsA() (" __HERE__ ")");
447457
// signature to use in the veto list: TClass * TObject::IsA()
448-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
458+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
449459
t.method("IsA", static_cast<TClass * (TObject::*)() const>(&TObject::IsA));
450460

451461
DEBUG_MSG("Adding wrapper for void TObject::StreamerNVirtual(TBuffer &) (" __HERE__ ")");
452462
// signature to use in the veto list: void TObject::StreamerNVirtual(TBuffer &)
453-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
463+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
454464
t.method("StreamerNVirtual", static_cast<void (TObject::*)(TBuffer &) >(&TObject::StreamerNVirtual));
455465

456466
DEBUG_MSG("Adding wrapper for const char * TObject::DeclFileName() (" __HERE__ ")");
457467
// signature to use in the veto list: const char * TObject::DeclFileName()
458-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
468+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
459469
module_.method("TObject!DeclFileName", []() { return (std::string)TObject::DeclFileName(); });
460470

461471
DEBUG_MSG("Adding wrapper for int TObject::ImplFileLine() (" __HERE__ ")");
462472
// signature to use in the veto list: int TObject::ImplFileLine()
463-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
473+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
464474
module_.method("TObject!ImplFileLine", static_cast<int (*)() >(&TObject::ImplFileLine));
465475

466476
DEBUG_MSG("Adding wrapper for const char * TObject::ImplFileName() (" __HERE__ ")");
467477
// signature to use in the veto list: const char * TObject::ImplFileName()
468-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
478+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
469479
module_.method("TObject!ImplFileName", []() { return (std::string)TObject::ImplFileName(); });
470480

471481
DEBUG_MSG("Adding wrapper for const char * TObject::Class_Name() (" __HERE__ ")");
472482
// signature to use in the veto list: const char * TObject::Class_Name()
473-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
483+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
474484
module_.method("TObject!Class_Name", []() { return (std::string)TObject::Class_Name(); });
475485

476486
DEBUG_MSG("Adding wrapper for TClass * TObject::Dictionary() (" __HERE__ ")");
477487
// signature to use in the veto list: TClass * TObject::Dictionary()
478-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
488+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
479489
module_.method("TObject!Dictionary", static_cast<TClass * (*)() >(&TObject::Dictionary));
480490

481491
DEBUG_MSG("Adding wrapper for TClass * TObject::Class() (" __HERE__ ")");
482492
// signature to use in the veto list: TClass * TObject::Class()
483-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
493+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
484494
module_.method("TObject!Class", static_cast<TClass * (*)() >(&TObject::Class));
485495

486496
DEBUG_MSG("Adding wrapper for void TObject::Streamer(TBuffer &) (" __HERE__ ")");
487497
// signature to use in the veto list: void TObject::Streamer(TBuffer &)
488-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
498+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
489499
t.method("Streamer", static_cast<void (TObject::*)(TBuffer &) >(&TObject::Streamer));
490500

491501
DEBUG_MSG("Adding wrapper for int TObject::DeclFileLine() (" __HERE__ ")");
492502
// signature to use in the veto list: int TObject::DeclFileLine()
493-
// defined in /home/pgras/.julia/conda/3/include/TObject.h:245:4
503+
// defined in /home/pgras/.julia/conda/3/include/TObject.h:243:4
494504
module_.method("TObject!DeclFileLine", static_cast<int (*)() >(&TObject::DeclFileLine));
495505
}
496506

0 commit comments

Comments
 (0)