Skip to content

Commit

Permalink
[tutorials] improve graphics/gtime.C tutorial
Browse files Browse the repository at this point in the history
At each step draw newly created graph with reasonable content
Avoid writing value to vector out of bounds
  • Loading branch information
linev committed May 5, 2023
1 parent 29479ca commit 404e28a
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions tutorials/graphics/gtime.C
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
/// \file
/// \ingroup tutorial_graphics
/// Example of a graph of data moving in time.
/// Use the canvas "File/Quit" to exit from this example
/// Use the canvas "File/Quit ROOT" to exit from this example
///
/// \macro_code
///
/// \author Olivier Couet

void gtime()
{
auto c1 = (TCanvas*) gROOT->FindObject("c1");
auto c1 = (TCanvas *) gROOT->FindObject("c1");
if (c1) delete c1;

c1 = new TCanvas("c1");
const Int_t ng = 100;
const Int_t kNMAX = 10000;
std::vector<Double_t> X(kNMAX), Y(kNMAX);
Int_t cursor = kNMAX;
TGraph *g = new TGraph(ng);
g->SetMarkerStyle(21);
g->SetMarkerColor(kBlue);
Double_t x = 0;
Double_t x = 0, stepx = 0.1;

while (1) {
c1->Clear();
if (cursor > kNMAX-ng) {
while (!gSystem->ProcessEvents()) {
if (cursor + ng >= kNMAX) {
cursor = 0;
for (Int_t i = 0; i < ng; i++) {
X[i] = x;
Y[i] = sin(x);
x += 0.1;
Y[i] = TMath::Sin(x);
x += stepx;
}
g->Draw("alp");
cursor = 0;
} else {
x += 0.1;
X[cursor+ng] = x;
Y[cursor+ng] = TMath::Sin(x);
x += stepx;
cursor++;
g->DrawGraph(ng, X.data()+cursor, Y.data()+cursor, "alp");
}

TGraph *g = new TGraph(ng, X.data()+cursor, Y.data()+cursor);
g->SetMarkerStyle(21);
g->SetMarkerColor(kBlue);
g->SetLineColor(kGreen);
g->SetBit(kCanDelete); // let canvas delete graph when call TCanvas::Clear()

c1->Clear();
g->Draw("alp");
c1->Update();
if (gSystem->ProcessEvents()) break;

gSystem->Sleep(10);
}
}

1 comment on commit 404e28a

@SamuelChegeMburu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello.

I am a student in Kenyatta University working on Lateral Distribution of Cosmic ray Muons.
I have done my simulation and i have a challange in reading the DAT files from corsika with root. I want to get a graph of coincidence rate againsit distance between the two detectors up to a distance of 30m. I have attached the CorsikaPlotter.cc that i am using and this error is appearing. Kindly help.

sam@sam-Vostro-2521:/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead$ cp CorsikaPlotter1.cc CorsikaPlotter2.cc
sam@sam-Vostro-2521:
/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead$ gedit CorsikaPlotter2.cc
sam@sam-Vostro-2521:~/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead$ root CorsikaPlotter2.cc


  •                                     *
    
  •    W E L C O M E  to  R O O T       *
    
  •                                     *
    
  • Version 5.34/38 12 March 2018 *
  •                                     *
    
  • You are welcome to visit our Web site *
  •      http://root.cern.ch            *
    
  •                                     *
    

ROOT 5.34/38 (heads/v5-34-00-patches@v5-34-36-235-gba5b2a7, Feb 10 2023, 15:43:00 on linuxx8664gcc)

CINT/ROOT C/C++ Interpreter version 5.18.00, July 2, 2010
Type ? for help. Commands must be C++ statements.
Enclose multiple statements between { }.
root [0]
Processing CorsikaPlotter2.cc...
Note: macro handled as typedef float CREAL; /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/CorsikaTypes.h:9:
Note: macro handled as typedef char CCHAR; /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/CorsikaTypes.h:10:
Note: macro handled as typedef int CINT; /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/CorsikaTypes.h:11:
Note: macro handled as typedef double CDOUBLEPRECISION; /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/CorsikaTypes.h:12:
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:19:0:
/home/sam/Root/root_install/include/TCollectionProxyInfo.h: In instantiation of ‘static void* ROOT::TCollectionProxyInfo::Type::construct(void*, size_t) [with T = std::vectorcrs::TParticleBlockEntry; size_t = long unsigned int]’:
/home/sam/Root/root_install/include/TCollectionProxyInfo.h:510:17: required from ‘static ROOT::TCollectionProxyInfo* ROOT::TCollectionProxyInfo::Generate(const T&) [with T = ROOT::TCollectionProxyInfo::Pushback<std::vectorcrs::TParticleBlockEntry >]’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:137:158: required from here
/home/sam/Root/root_install/include/TCollectionProxyInfo.h:310:13: error: no matching function for call to ‘crs::TParticleBlockEntry::TParticleBlockEntry()’
::new(m) Value_t();
^~~~~~~~~~~~~~~~~~
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/MParticleBlock.h:6:0,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry_.cxx:2,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.h:34,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:17:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:39:5: note: candidate: crs::TParticleBlockEntry::TParticleBlockEntry(const crs::TParticleBlockEntry&)
TParticleBlockEntry (const TParticleBlockEntry& p);
^~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:39:5: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:38:5: note: candidate: crs::TParticleBlockEntry::TParticleBlockEntry(const float*, bool)
TParticleBlockEntry (const CREAL data, bool thinn);
^~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:38:5: note: candidate expects 2 arguments, 0 provided
In file included from /usr/include/c++/7/vector:62:0,
from /home/sam/Root/root_install/include/TGenericClassInfo.h:15,
from /home/sam/Root/root_install/include/Rtypes.h:270,
from /home/sam/Root/root_install/include/TObject.h:31,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.h:32,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:17:
/usr/include/c++/7/bits/stl_construct.h: In instantiation of ‘void std::_Construct(_T1
, _Args&& ...) [with _T1 = crs::TParticleBlockEntry; _Args = {}]’:
/usr/include/c++/7/bits/stl_uninitialized.h:527:18: required from ‘static _ForwardIterator std::__uninitialized_default_n_1<_TrivialValueType>::__uninit_default_n(_ForwardIterator, _Size) [with _ForwardIterator = crs::TParticleBlockEntry*; _Size = long unsigned int; bool _TrivialValueType = false]’
/usr/include/c++/7/bits/stl_uninitialized.h:583:20: required from ‘_ForwardIterator std::__uninitialized_default_n(_ForwardIterator, _Size) [with _ForwardIterator = crs::TParticleBlockEntry*; _Size = long unsigned int]’
/usr/include/c++/7/bits/stl_uninitialized.h:645:44: required from ‘_ForwardIterator std::__uninitialized_default_n_a(_ForwardIterator, _Size, std::allocator<_Tp>&) [with _ForwardIterator = crs::TParticleBlockEntry*; _Size = long unsigned int; _Tp = crs::TParticleBlockEntry]’
/usr/include/c++/7/bits/vector.tcc:563:35: required from ‘void std::vector<_Tp, _Alloc>::_M_default_append(std::vector<_Tp, _Alloc>::size_type) [with _Tp = crs::TParticleBlockEntry; _Alloc = std::allocatorcrs::TParticleBlockEntry; std::vector<_Tp, _Alloc>::size_type = long unsigned int]’
/usr/include/c++/7/bits/stl_vector.h:692:21: required from ‘void std::vector<_Tp, _Alloc>::resize(std::vector<_Tp, _Alloc>::size_type) [with _Tp = crs::TParticleBlockEntry; _Alloc = std::allocatorcrs::TParticleBlockEntry; std::vector<_Tp, _Alloc>::size_type = long unsigned int]’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:286:215: required from here
/usr/include/c++/7/bits/stl_construct.h:75:7: error: no matching function for call to ‘crs::TParticleBlockEntry::TParticleBlockEntry()’
{ ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(args)...); }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/MParticleBlock.h:6:0,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry
.cxx:2,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.h:34,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.cxx:17:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:39:5: note: candidate: crs::TParticleBlockEntry::TParticleBlockEntry(const crs::TParticleBlockEntry&)
TParticleBlockEntry (const TParticleBlockEntry& p);
^~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:39:5: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:38:5: note: candidate: crs::TParticleBlockEntry::TParticleBlockEntry(const float*, bool)
TParticleBlockEntry (const CREAL data, bool thinn);
^~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TParticleBlockEntry.h:38:5: note: candidate expects 2 arguments, 0 provided
c++: error: /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TParticleBlockEntry__cxx_ACLiC_dict.o: No such file or directory
Error in : Compilation failed!
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:17:0:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.h:54:9: error: ‘random_access_iterator’ does not name a type
typedef random_access_iteratorcrs::TParticleBlockEntry,long G__random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:70:70: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
static ROOT::TGenericClassInfo GenerateInitInstanceLocal(const ::random_access_iteratorcrs::TParticleBlockEntry,long)
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:70:92: error: expected ‘,’ or ‘...’ before ‘<’ token
static ROOT::TGenericClassInfo GenerateInitInstanceLocal(const ::random_access_iteratorcrs::TParticleBlockEntry,long)
^
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:24:0:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘ROOT::TGenericClassInfo
ROOTDict::GenerateInitInstanceLocal(int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:26: error: ‘::random_access_iterator’ has not been declared
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:73: error: expected primary-expression before ‘,’ token
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:74: error: expected primary-expression before ‘long’
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:74: error: expected ‘)’ before ‘long’
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Root/root_install/include/TError.h:100:72: error: expected ‘)’ before ‘;’ token
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^~~~~~~~~
/home/sam/Root/root_install/include/TError.h:100:72: error: expected ‘)’ before ‘;’ token
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^~~~~~~~~
/home/sam/Root/root_install/include/TError.h:100:72: warning: suggest braces around empty body in an ‘if’ statement [-Wempty-body]
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TParticleBlockEntry,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR));
^~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:74:9: error: ‘::random_access_iterator’ has not been declared
::random_access_iteratorcrs::TParticleBlockEntry,long ptr = 0;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:74:56: error: expected primary-expression before ‘,’ token
::random_access_iteratorcrs::TParticleBlockEntry,long ptr = 0;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:74:57: error: expected primary-expression before ‘long’
::random_access_iteratorcrs::TParticleBlockEntry,long ptr = 0;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:75:71: error: ‘::random_access_iterator’ has not been declared
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TParticleBlockEntry,long),0);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:75:118: error: expected primary-expression before ‘,’ token
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TParticleBlockEntry,long),0);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:75:119: error: expected primary-expression before ‘long’
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TParticleBlockEntry,long),0);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:75:119: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:78:28: error: ‘::random_access_iterator’ has not been declared
typeid(::random_access_iteratorcrs::TParticleBlockEntry,long), ::ROOT::DefineBehavior(ptr, ptr),
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:78:75: error: expected primary-expression before ‘,’ token
typeid(::random_access_iteratorcrs::TParticleBlockEntry,long), ::ROOT::DefineBehavior(ptr, ptr),
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:78:76: error: expected primary-expression before ‘long’
typeid(::random_access_iteratorcrs::TParticleBlockEntry,long), ::ROOT::DefineBehavior(ptr, ptr),
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:78:76: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:78:106: error: qualified-id in declaration before ‘(’ token
typeid(::random_access_iteratorcrs::TParticleBlockEntry,long), ::ROOT::DefineBehavior(ptr, ptr),
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:88:58: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
ROOT::TGenericClassInfo GenerateInitInstance(const ::random_access_iteratorcrs::TParticleBlockEntry,long)
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:88:80: error: expected ‘,’ or ‘...’ before ‘<’ token
ROOT::TGenericClassInfo GenerateInitInstance(const ::random_access_iteratorcrs::TParticleBlockEntry,long)
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘ROOT::TGenericClassInfo* ROOTDict::GenerateInitInstance(int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:90:43: error: ‘::random_access_iterator’ has not been declared
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TParticleBlockEntry,long)0);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:90:90: error: expected primary-expression before ‘,’ token
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TParticleBlockEntry,long
)0);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:90:91: error: expected primary-expression before ‘long’
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TParticleBlockEntry,long)0);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:90:91: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:93:93: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
static ::ROOT::TGenericClassInfo R__UNIQUE(Init) = GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long)0x0); R__UseDummy(R__UNIQUE(Init));
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:93:85: error: expected primary-expression before ‘const’
static ::ROOT::TGenericClassInfo R__UNIQUE(Init) = GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long)0x0); R__UseDummy(R__UNIQUE(Init));
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:93:85: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR_Dictionary()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:97:54: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long
)0x0)->GetClass();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:97:46: error: expected primary-expression before ‘const’
::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long)0x0)->GetClass();
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:97:46: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR_ShowMembers(void
, TMemberInspector&)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:111:71: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
TClass R__cl = ::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long)0x0)->GetClass();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:111:63: error: expected primary-expression before ‘const’
TClass R__cl = ::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TParticleBlockEntry,long)0x0)->GetClass();
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:111:63: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void* ROOTDict::new_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:59: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long : new ::random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:106: error: expected primary-expression before ‘,’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long : new ::random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:107: error: expected primary-expression before ‘long’
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long : new ::random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:107: error: expected ‘:’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:107: error: expected primary-expression before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:107: error: expected ‘;’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:120:111: error: expected unqualified-id before ‘>’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long : new ::random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void* ROOTDict::newArray_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR(Long_t, void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:58: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements] : new ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:105: error: expected primary-expression before ‘,’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements] : new ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:106: error: expected primary-expression before ‘long’
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements] : new ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:106: error: expected ‘:’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:106: error: expected primary-expression before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:106: error: expected ‘;’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:123:110: error: expected unqualified-id before ‘>’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements] : new ::random_access_iteratorcrs::TParticleBlockEntry,long[nElements];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::delete_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:127:18: error: ‘::random_access_iterator’ has not been declared
delete ((::random_access_iteratorcrs::TParticleBlockEntry,long)p);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:127:65: error: expected primary-expression before ‘,’ token
delete ((::random_access_iteratorcrs::TParticleBlockEntry,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:127:66: error: expected primary-expression before ‘long’
delete ((::random_access_iteratorcrs::TParticleBlockEntry,long)p);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:127:66: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:127:75: error: expected ‘)’ before ‘;’ token
delete ((::random_access_iteratorcrs::TParticleBlockEntry,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::deleteArray_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:130:21: error: ‘::random_access_iterator’ has not been declared
delete [] ((::random_access_iteratorcrs::TParticleBlockEntry,long)p);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:130:68: error: expected primary-expression before ‘,’ token
delete [] ((::random_access_iteratorcrs::TParticleBlockEntry,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:130:69: error: expected primary-expression before ‘long’
delete [] ((::random_access_iteratorcrs::TParticleBlockEntry,long)p);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:130:69: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:130:78: error: expected ‘)’ before ‘;’ token
delete [] ((::random_access_iteratorcrs::TParticleBlockEntry,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::destruct_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:133:17: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
typedef ::random_access_iteratorcrs::TParticleBlockEntry,long current_t;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:134:9: error: ‘current_t’ was not declared in this scope
((current_t*)p)->~current_t();
^~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:134:9: note: suggested alternative: ‘cpu_set_t’
((current_t*)p)->~current_t();
^~~~~~~~~
cpu_set_t
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:134:19: error: expected primary-expression before ‘)’ token
((current_t*)p)->~current_t();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:134:20: error: expected ‘)’ before ‘p’
((current_t*)p)->~current_t();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict_2651_0_1(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:170:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TParticleBlockEntry,long p;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:170:51: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TParticleBlockEntry,long p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:170:52: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TParticleBlockEntry,long p;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:175:8: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TParticleBlockEntry,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:175:16: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TParticleBlockEntry,long[n];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:175:63: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TParticleBlockEntry,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:175:64: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TParticleBlockEntry,long[n];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:177:8: error: ‘p’ was not declared in this scope
p = new((void
) gvp) random_access_iteratorcrs::TParticleBlockEntry,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:177:29: error: ‘random_access_iterator’ does not name a type
p = new((void
) gvp) random_access_iteratorcrs::TParticleBlockEntry,long[n];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:177:76: error: expected primary-expression before ‘,’ token
p = new((void
) gvp) random_access_iteratorcrs::TParticleBlockEntry,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:177:77: error: expected primary-expression before ‘long’
p = new((void*) gvp) random_access_iteratorcrs::TParticleBlockEntry,long[n];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:181:8: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:181:16: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:181:63: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:181:64: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:183:8: error: ‘p’ was not declared in this scope
p = new((void*) gvp) random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:183:29: error: ‘random_access_iterator’ does not name a type
p = new((void*) gvp) random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:183:76: error: expected primary-expression before ‘,’ token
p = new((void*) gvp) random_access_iteratorcrs::TParticleBlockEntry,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:183:77: error: expected primary-expression before ‘long’
p = new((void*) gvp) random_access_iteratorcrs::TParticleBlockEntry,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:186:28: error: ‘p’ was not declared in this scope
result7->obj.i = (long) p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict_2651_0_2(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:196:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TParticleBlockEntry,long* p;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:196:51: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TParticleBlockEntry,long* p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:196:52: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TParticleBlockEntry,long* p;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:198:4: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TParticleBlockEntry,long((random_access_iteratorcrs::TParticleBlockEntry,long) tmp);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:198:12: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TParticleBlockEntry,long((random_access_iteratorcrs::TParticleBlockEntry,long) tmp);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:198:59: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TParticleBlockEntry,long((random_access_iteratorcrs::TParticleBlockEntry,long) tmp);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:198:60: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TParticleBlockEntry,long((random_access_iteratorcrs::TParticleBlockEntry,long) tmp);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:206:9: error: ‘random_access_iterator’ does not name a type
typedef random_access_iteratorcrs::TParticleBlockEntry,long G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict_2651_0_3(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:222:18: error: ‘random_access_iterator’ was not declared in this scope
delete[] (random_access_iteratorcrs::TParticleBlockEntry,long) soff;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:222:65: error: expected primary-expression before ‘,’ token
delete[] (random_access_iteratorcrs::TParticleBlockEntry,long
) soff;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:222:66: error: expected primary-expression before ‘long’
delete[] (random_access_iteratorcrs::TParticleBlockEntry,long) soff;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:222:66: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:226:12: error: ‘random_access_iterator’ was not declared in this scope
((random_access_iteratorcrs::TParticleBlockEntry,long
) (soff+(sizeof(random_access_iteratorcrs::TParticleBlockEntry,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:226:59: error: expected primary-expression before ‘,’ token
((random_access_iteratorcrs::TParticleBlockEntry,long
) (soff+(sizeof(random_access_iteratorcrs::TParticleBlockEntry,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:226:60: error: expected primary-expression before ‘long’
((random_access_iteratorcrs::TParticleBlockEntry,long
) (soff+(sizeof(random_access_iteratorcrs::TParticleBlockEntry,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:226:60: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:226:208: error: expected ‘)’ before ‘;’ token
(soff+(sizeof(random_access_iteratorcrs::TParticleBlockEntry,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:232:16: error: ‘random_access_iterator’ was not declared in this scope
delete (random_access_iteratorcrs::TParticleBlockEntry,long
) soff;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:232:63: error: expected primary-expression before ‘,’ token
delete (random_access_iteratorcrs::TParticleBlockEntry,long
) soff;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:232:64: error: expected primary-expression before ‘long’
delete (random_access_iteratorcrs::TParticleBlockEntry,long) soff;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:232:64: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:235:10: error: ‘random_access_iterator’ was not declared in this scope
((random_access_iteratorcrs::TParticleBlockEntry,long
) (soff))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:235:57: error: expected primary-expression before ‘,’ token
((random_access_iteratorcrs::TParticleBlockEntry,long) (soff))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:235:58: error: expected primary-expression before ‘long’
((random_access_iteratorcrs::TParticleBlockEntry,long
) (soff))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:235:58: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:235:140: error: expected ‘)’ before ‘;’ token
((random_access_iteratorcrs::TParticleBlockEntry,long) (soff))->~G__Trandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict_2651_0_4(G__value
, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:246:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TParticleBlockEntry,long* dest = (random_access_iteratorcrs::TParticleBlockEntry,long) G__getstructoffset();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:246:51: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TParticleBlockEntry,long
dest = (random_access_iteratorcrs::TParticleBlockEntry,long) G__getstructoffset();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:246:52: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TParticleBlockEntry,long
dest = (random_access_iteratorcrs::TParticleBlockEntry,long*) G__getstructoffset();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:247:10: error: ‘random_access_iterator’ does not name a type
const random_access_iteratorcrs::TParticleBlockEntry,long& obj = *dest;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:248:28: error: ‘obj’ was not declared in this scope
result7->ref = (long) (&obj);
^~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void G__setup_memvarrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:6: error: ‘random_access_iterator’ was not declared in this scope
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:53: error: expected primary-expression before ‘,’ token
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:54: error: expected primary-expression before ‘long’
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:64: error: ‘p’ was not declared in this scope
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:114: error: expected primary-expression before ‘,’ token
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:115: error: expected primary-expression before ‘long’
{ random_access_iteratorcrs::TParticleBlockEntry,long p; p=(random_access_iteratorcrs::TParticleBlockEntry,long)0x1000; if (p) { }
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:348:115: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx: In function ‘void G__cpp_setup_tagtableAutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:553:198: error: ‘random_access_iterator’ was not declared in this scope
ccess_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dictLN_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR),sizeof(random_access_iteratorcrs::TParticleBlockEntry,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:553:245: error: expected primary-expression before ‘,’ token
xx_ACLiC_dictLN_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR),sizeof(random_access_iteratorcrs::TParticleBlockEntry,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:553:246: error: expected primary-expression before ‘long’
x_ACLiC_dictLN_random_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR),sizeof(random_access_iteratorcrs::TParticleBlockEntry,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTParticleBlockEntrycOlonggR);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.cxx:553:246: error: expected ‘)’ before ‘long’
c++: error: /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TParticleBlockEntry_long__cxx_ACLiC_dict.o: No such file or directory
Error in : Compilation failed!
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:19:0:
/home/sam/Root/root_install/include/TCollectionProxyInfo.h: In instantiation of ‘static void* ROOT::TCollectionProxyInfo::Type::construct(void*, size_t) [with T = std::vectorcrs::TLongitudinal; size_t = long unsigned int]’:
/home/sam/Root/root_install/include/TCollectionProxyInfo.h:510:17: required from ‘static ROOT::TCollectionProxyInfo* ROOT::TCollectionProxyInfo::Generate(const T&) [with T = ROOT::TCollectionProxyInfo::Pushback<std::vectorcrs::TLongitudinal >]’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:137:152: required from here
/home/sam/Root/root_install/include/TCollectionProxyInfo.h:310:13: error: no matching function for call to ‘crs::TLongitudinal::TLongitudinal()’
::new(m) Value_t();
^~~~~~~~~~~~~~~~~~
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/MLongitudinalBlock.h:6:0,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal.cxx:2,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.h:34,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:17:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:26:5: note: candidate: crs::TLongitudinal::TLongitudinal(const float*)
TLongitudinal (const CREAL data);
^~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:26:5: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate: constexpr crs::TLongitudinal::TLongitudinal(const crs::TLongitudinal&)
class TLongitudinal {
^~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate: constexpr crs::TLongitudinal::TLongitudinal(crs::TLongitudinal&&)
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate expects 1 argument, 0 provided
In file included from /usr/include/c++/7/vector:62:0,
from /home/sam/Root/root_install/include/TGenericClassInfo.h:15,
from /home/sam/Root/root_install/include/Rtypes.h:270,
from /home/sam/Root/root_install/include/TObject.h:31,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.h:32,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:17:
/usr/include/c++/7/bits/stl_construct.h: In instantiation of ‘void std::_Construct(_T1
, _Args&& ...) [with _T1 = crs::TLongitudinal; _Args = {}]’:
/usr/include/c++/7/bits/stl_uninitialized.h:527:18: required from ‘static _ForwardIterator std::__uninitialized_default_n_1<_TrivialValueType>::__uninit_default_n(_ForwardIterator, _Size) [with _ForwardIterator = crs::TLongitudinal*; _Size = long unsigned int; bool _TrivialValueType = false]’
/usr/include/c++/7/bits/stl_uninitialized.h:583:20: required from ‘_ForwardIterator std::__uninitialized_default_n(_ForwardIterator, _Size) [with _ForwardIterator = crs::TLongitudinal*; _Size = long unsigned int]’
/usr/include/c++/7/bits/stl_uninitialized.h:645:44: required from ‘_ForwardIterator std::__uninitialized_default_n_a(_ForwardIterator, _Size, std::allocator<_Tp>&) [with _ForwardIterator = crs::TLongitudinal*; _Size = long unsigned int; _Tp = crs::TLongitudinal]’
/usr/include/c++/7/bits/vector.tcc:563:35: required from ‘void std::vector<_Tp, _Alloc>::_M_default_append(std::vector<_Tp, _Alloc>::size_type) [with _Tp = crs::TLongitudinal; _Alloc = std::allocatorcrs::TLongitudinal; std::vector<_Tp, _Alloc>::size_type = long unsigned int]’
/usr/include/c++/7/bits/stl_vector.h:692:21: required from ‘void std::vector<_Tp, _Alloc>::resize(std::vector<_Tp, _Alloc>::size_type) [with _Tp = crs::TLongitudinal; _Alloc = std::allocatorcrs::TLongitudinal; std::vector<_Tp, _Alloc>::size_type = long unsigned int]’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:286:191: required from here
/usr/include/c++/7/bits/stl_construct.h:75:7: error: no matching function for call to ‘crs::TLongitudinal::TLongitudinal()’
{ ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(_args)...); }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/MLongitudinalBlock.h:6:0,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal
.cxx:2,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.h:34,
from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.cxx:17:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:26:5: note: candidate: crs::TLongitudinal::TLongitudinal(const float*)
TLongitudinal (const CREAL data);
^~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:26:5: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate: constexpr crs::TLongitudinal::TLongitudinal(const crs::TLongitudinal&)
class TLongitudinal {
^~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate expects 1 argument, 0 provided
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate: constexpr crs::TLongitudinal::TLongitudinal(crs::TLongitudinal&&)
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/coast/CorsikaIntern/crs/TLongitudinal.h:22:9: note: candidate expects 1 argument, 0 provided
c++: error: /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_vector_crs__TLongitudinal__cxx_ACLiC_dict.o: No such file or directory
Error in : Compilation failed!
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:17:0:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.h:54:9: error: ‘random_access_iterator’ does not name a type
typedef random_access_iteratorcrs::TLongitudinal,long G__random_access_iteratorlEcrscLcLTLongitudinalcOlonggR;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:70:70: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
static ROOT::TGenericClassInfo GenerateInitInstanceLocal(const ::random_access_iteratorcrs::TLongitudinal,long)
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:70:92: error: expected ‘,’ or ‘...’ before ‘<’ token
static ROOT::TGenericClassInfo GenerateInitInstanceLocal(const ::random_access_iteratorcrs::TLongitudinal,long)
^
In file included from /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:24:0:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘ROOT::TGenericClassInfo
ROOTDict::GenerateInitInstanceLocal(int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:26: error: ‘::random_access_iterator’ has not been declared
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:67: error: expected primary-expression before ‘,’ token
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:68: error: expected primary-expression before ‘long’
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:68: error: expected ‘)’ before ‘long’
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^
/home/sam/Root/root_install/include/TError.h:100:13: note: in definition of macro ‘R__ASSERT’
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Root/root_install/include/TError.h:100:72: error: expected ‘)’ before ‘;’ token
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^~~~~~~~~
/home/sam/Root/root_install/include/TError.h:100:72: error: expected ‘)’ before ‘;’ token
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^~~~~~~~~
/home/sam/Root/root_install/include/TError.h:100:72: warning: suggest braces around empty body in an ‘if’ statement [-Wempty-body]
if (!(e)) ::Fatal("", kAssertMsg, QUOTE(e), LINE, FILE);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:73:7: note: in expansion of macro ‘R__ASSERT’
R__ASSERT(sizeof(::random_access_iteratorcrs::TLongitudinal,long) == sizeof( ::ROOTShadow::Shadow::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR));
^~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:74:9: error: ‘::random_access_iterator’ has not been declared
::random_access_iteratorcrs::TLongitudinal,long ptr = 0;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:74:50: error: expected primary-expression before ‘,’ token
::random_access_iteratorcrs::TLongitudinal,long ptr = 0;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:74:51: error: expected primary-expression before ‘long’
::random_access_iteratorcrs::TLongitudinal,long ptr = 0;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:75:71: error: ‘::random_access_iterator’ has not been declared
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TLongitudinal,long),0);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:75:112: error: expected primary-expression before ‘,’ token
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TLongitudinal,long),0);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:75:113: error: expected primary-expression before ‘long’
static ::TVirtualIsAProxy
isa_proxy = new ::TIsAProxy(typeid(::random_access_iteratorcrs::TLongitudinal,long),0);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:75:113: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:78:28: error: ‘::random_access_iterator’ has not been declared
typeid(::random_access_iteratorcrs::TLongitudinal,long), ::ROOT::DefineBehavior(ptr, ptr),
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:78:69: error: expected primary-expression before ‘,’ token
typeid(::random_access_iteratorcrs::TLongitudinal,long), ::ROOT::DefineBehavior(ptr, ptr),
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:78:70: error: expected primary-expression before ‘long’
typeid(::random_access_iteratorcrs::TLongitudinal,long), ::ROOT::DefineBehavior(ptr, ptr),
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:78:70: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:78:100: error: qualified-id in declaration before ‘(’ token
typeid(::random_access_iteratorcrs::TLongitudinal,long), ::ROOT::DefineBehavior(ptr, ptr),
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:88:58: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
ROOT::TGenericClassInfo GenerateInitInstance(const ::random_access_iteratorcrs::TLongitudinal,long)
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:88:80: error: expected ‘,’ or ‘...’ before ‘<’ token
ROOT::TGenericClassInfo GenerateInitInstance(const ::random_access_iteratorcrs::TLongitudinal,long)
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘ROOT::TGenericClassInfo* ROOTDict::GenerateInitInstance(int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:90:43: error: ‘::random_access_iterator’ has not been declared
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TLongitudinal,long)0);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:90:84: error: expected primary-expression before ‘,’ token
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TLongitudinal,long
)0);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:90:85: error: expected primary-expression before ‘long’
return GenerateInitInstanceLocal((::random_access_iteratorcrs::TLongitudinal,long)0);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:90:85: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:93:93: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
static ::ROOT::TGenericClassInfo R__UNIQUE(Init) = GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long)0x0); R__UseDummy(R__UNIQUE(Init));
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:93:85: error: expected primary-expression before ‘const’
static ::ROOT::TGenericClassInfo R__UNIQUE(Init) = GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long)0x0); R__UseDummy(R__UNIQUE(Init));
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:93:85: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR_Dictionary()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:97:54: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long
)0x0)->GetClass();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:97:46: error: expected primary-expression before ‘const’
::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long)0x0)->GetClass();
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:97:46: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::random_access_iteratorlEcrscLcLTLongitudinalcOlonggR_ShowMembers(void
, TMemberInspector&)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:111:71: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
TClass R__cl = ::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long)0x0)->GetClass();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:111:63: error: expected primary-expression before ‘const’
TClass R__cl = ::ROOTDict::GenerateInitInstanceLocal((const ::random_access_iteratorcrs::TLongitudinal,long)0x0)->GetClass();
^~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:111:63: error: expected ‘)’ before ‘const’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void* ROOTDict::new_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:59: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long : new ::random_access_iteratorcrs::TLongitudinal,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:100: error: expected primary-expression before ‘,’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long : new ::random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:101: error: expected primary-expression before ‘long’
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long : new ::random_access_iteratorcrs::TLongitudinal,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:101: error: expected ‘:’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:101: error: expected primary-expression before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:101: error: expected ‘;’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:120:105: error: expected unqualified-id before ‘>’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long : new ::random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void* ROOTDict::newArray_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR(Long_t, void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:58: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long[nElements] : new ::random_access_iteratorcrs::TLongitudinal,long[nElements];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:99: error: expected primary-expression before ‘,’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long[nElements] : new ::random_access_iteratorcrs::TLongitudinal,long[nElements];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:100: error: expected primary-expression before ‘long’
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long[nElements] : new ::random_access_iteratorcrs::TLongitudinal,long[nElements];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:100: error: expected ‘:’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:100: error: expected primary-expression before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:100: error: expected ‘;’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:123:104: error: expected unqualified-id before ‘>’ token
return p ? ::new((::ROOT::TOperatorNewHelper*)p) ::random_access_iteratorcrs::TLongitudinal,long[nElements] : new ::random_access_iteratorcrs::TLongitudinal,long[nElements];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::delete_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:127:18: error: ‘::random_access_iterator’ has not been declared
delete ((::random_access_iteratorcrs::TLongitudinal,long)p);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:127:59: error: expected primary-expression before ‘,’ token
delete ((::random_access_iteratorcrs::TLongitudinal,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:127:60: error: expected primary-expression before ‘long’
delete ((::random_access_iteratorcrs::TLongitudinal,long)p);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:127:60: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:127:69: error: expected ‘)’ before ‘;’ token
delete ((::random_access_iteratorcrs::TLongitudinal,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::deleteArray_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:130:21: error: ‘::random_access_iterator’ has not been declared
delete [] ((::random_access_iteratorcrs::TLongitudinal,long)p);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:130:62: error: expected primary-expression before ‘,’ token
delete [] ((::random_access_iteratorcrs::TLongitudinal,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:130:63: error: expected primary-expression before ‘long’
delete [] ((::random_access_iteratorcrs::TLongitudinal,long)p);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:130:63: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:130:72: error: expected ‘)’ before ‘;’ token
delete [] ((::random_access_iteratorcrs::TLongitudinal,long
)p);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void ROOTDict::destruct_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR(void*)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:133:17: error: ‘random_access_iterator’ in namespace ‘::’ does not name a template type
typedef ::random_access_iteratorcrs::TLongitudinal,long current_t;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:134:9: error: ‘current_t’ was not declared in this scope
((current_t*)p)->~current_t();
^~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:134:9: note: suggested alternative: ‘cpu_set_t’
((current_t*)p)->~current_t();
^~~~~~~~~
cpu_set_t
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:134:19: error: expected primary-expression before ‘)’ token
((current_t*)p)->~current_t();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:134:20: error: expected ‘)’ before ‘p’
((current_t*)p)->~current_t();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict_2646_0_1(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:170:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TLongitudinal,long p;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:170:45: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TLongitudinal,long p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:170:46: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TLongitudinal,long p;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:175:8: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TLongitudinal,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:175:16: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TLongitudinal,long[n];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:175:57: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TLongitudinal,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:175:58: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TLongitudinal,long[n];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:177:8: error: ‘p’ was not declared in this scope
p = new((void
) gvp) random_access_iteratorcrs::TLongitudinal,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:177:29: error: ‘random_access_iterator’ does not name a type
p = new((void
) gvp) random_access_iteratorcrs::TLongitudinal,long[n];
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:177:70: error: expected primary-expression before ‘,’ token
p = new((void
) gvp) random_access_iteratorcrs::TLongitudinal,long[n];
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:177:71: error: expected primary-expression before ‘long’
p = new((void*) gvp) random_access_iteratorcrs::TLongitudinal,long[n];
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:181:8: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:181:16: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TLongitudinal,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:181:57: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:181:58: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TLongitudinal,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:183:8: error: ‘p’ was not declared in this scope
p = new((void*) gvp) random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:183:29: error: ‘random_access_iterator’ does not name a type
p = new((void*) gvp) random_access_iteratorcrs::TLongitudinal,long;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:183:70: error: expected primary-expression before ‘,’ token
p = new((void*) gvp) random_access_iteratorcrs::TLongitudinal,long;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:183:71: error: expected primary-expression before ‘long’
p = new((void*) gvp) random_access_iteratorcrs::TLongitudinal,long;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:186:28: error: ‘p’ was not declared in this scope
result7->obj.i = (long) p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict_2646_0_2(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:196:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TLongitudinal,long* p;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:196:45: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TLongitudinal,long* p;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:196:46: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TLongitudinal,long* p;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:198:4: error: ‘p’ was not declared in this scope
p = new random_access_iteratorcrs::TLongitudinal,long((random_access_iteratorcrs::TLongitudinal,long) tmp);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:198:12: error: ‘random_access_iterator’ does not name a type
p = new random_access_iteratorcrs::TLongitudinal,long((random_access_iteratorcrs::TLongitudinal,long) tmp);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:198:53: error: expected primary-expression before ‘,’ token
p = new random_access_iteratorcrs::TLongitudinal,long((random_access_iteratorcrs::TLongitudinal,long) tmp);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:198:54: error: expected primary-expression before ‘long’
p = new random_access_iteratorcrs::TLongitudinal,long((random_access_iteratorcrs::TLongitudinal,long) tmp);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: At global scope:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:206:9: error: ‘random_access_iterator’ does not name a type
typedef random_access_iteratorcrs::TLongitudinal,long G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict_2646_0_3(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:222:18: error: ‘random_access_iterator’ was not declared in this scope
delete[] (random_access_iteratorcrs::TLongitudinal,long) soff;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:222:59: error: expected primary-expression before ‘,’ token
delete[] (random_access_iteratorcrs::TLongitudinal,long
) soff;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:222:60: error: expected primary-expression before ‘long’
delete[] (random_access_iteratorcrs::TLongitudinal,long) soff;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:222:60: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:226:12: error: ‘random_access_iterator’ was not declared in this scope
((random_access_iteratorcrs::TLongitudinal,long
) (soff+(sizeof(random_access_iteratorcrs::TLongitudinal,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:226:53: error: expected primary-expression before ‘,’ token
((random_access_iteratorcrs::TLongitudinal,long
) (soff+(sizeof(random_access_iteratorcrs::TLongitudinal,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:226:54: error: expected primary-expression before ‘long’
((random_access_iteratorcrs::TLongitudinal,long
) (soff+(sizeof(random_access_iteratorcrs::TLongitudinal,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:226:54: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:226:190: error: expected ‘)’ before ‘;’ token
nal,long>
) (soff+(sizeof(random_access_iteratorcrs::TLongitudinal,long)i)))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:232:16: error: ‘random_access_iterator’ was not declared in this scope
delete (random_access_iteratorcrs::TLongitudinal,long
) soff;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:232:57: error: expected primary-expression before ‘,’ token
delete (random_access_iteratorcrs::TLongitudinal,long) soff;
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:232:58: error: expected primary-expression before ‘long’
delete (random_access_iteratorcrs::TLongitudinal,long
) soff;
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:232:58: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:235:10: error: ‘random_access_iterator’ was not declared in this scope
((random_access_iteratorcrs::TLongitudinal,long) (soff))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:235:51: error: expected primary-expression before ‘,’ token
((random_access_iteratorcrs::TLongitudinal,long
) (soff))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:235:52: error: expected primary-expression before ‘long’
((random_access_iteratorcrs::TLongitudinal,long) (soff))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:235:52: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:235:128: error: expected ‘)’ before ‘;’ token
((random_access_iteratorcrs::TLongitudinal,long
) (soff))->~G__Trandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘int G__AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict_2646_0_4(G__value*, const char*, G__param*, int)’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:246:4: error: ‘random_access_iterator’ was not declared in this scope
random_access_iteratorcrs::TLongitudinal,long* dest = (random_access_iteratorcrs::TLongitudinal,long) G__getstructoffset();
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:246:45: error: expected primary-expression before ‘,’ token
random_access_iteratorcrs::TLongitudinal,long
dest = (random_access_iteratorcrs::TLongitudinal,long) G__getstructoffset();
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:246:46: error: expected primary-expression before ‘long’
random_access_iteratorcrs::TLongitudinal,long
dest = (random_access_iteratorcrs::TLongitudinal,long*) G__getstructoffset();
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:247:10: error: ‘random_access_iterator’ does not name a type
const random_access_iteratorcrs::TLongitudinal,long& obj = *dest;
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:248:28: error: ‘obj’ was not declared in this scope
result7->ref = (long) (&obj);
^~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void G__setup_memvarrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:6: error: ‘random_access_iterator’ was not declared in this scope
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:47: error: expected primary-expression before ‘,’ token
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:48: error: expected primary-expression before ‘long’
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:58: error: ‘p’ was not declared in this scope
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:102: error: expected primary-expression before ‘,’ token
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:103: error: expected primary-expression before ‘long’
{ random_access_iteratorcrs::TLongitudinal,long p; p=(random_access_iteratorcrs::TLongitudinal,long)0x1000; if (p) { }
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:348:103: error: expected ‘)’ before ‘long’
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx: In function ‘void G__cpp_setup_tagtableAutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict()’:
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:553:186: error: ‘random_access_iterator’ was not declared in this scope
ict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dictLN_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR),sizeof(random_access_iteratorcrs::TLongitudinal,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR);
^~~~~~~~~~~~~~~~~~~~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:553:227: error: expected primary-expression before ‘,’ token
inal_long__cxx_ACLiC_dictLN_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR),sizeof(random_access_iteratorcrs::TLongitudinal,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR);
^
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:553:228: error: expected primary-expression before ‘long’
nal_long__cxx_ACLiC_dictLN_random_access_iteratorlEcrscLcLTLongitudinalcOlonggR),sizeof(random_access_iteratorcrs::TLongitudinal,long),-1,262144,(char*)NULL,G__setup_memvarrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR,G__setup_memfuncrandom_access_iteratorlEcrscLcLTLongitudinalcOlonggR);
^~~~
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.cxx:553:228: error: expected ‘)’ before ‘long’
c++: error: /home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/AutoDict_random_access_iterator_crs__TLongitudinal_long__cxx_ACLiC_dict.o: No such file or directory
Error in : Compilation failed!
Error: Function CorsikaPlotter2() is not defined in current scope :0:
*** Interpreter error recovered ***

*** Break *** segmentation violation

===========================================================
There was a crash.
This is the entire stack trace of all threads:

#0 0x00007f7f71461337 in __GI___waitpid (pid=32648, stat_loc=stat_loc
entry=0x7ffee070a0e8, options=options
entry=0) at ../sysdeps/unix/sysv/linux/waitpid.c:30
#1 0x00007f7f713cc047 in do_system (line=) at ../sysdeps/posix/system.c:149
#2 0x00007f7f7215e7c5 in TUnixSystem::Exec (shellcmd=, this=0x55a9778f59a0) at /home/sam/Root/root_src/core/unix/src/TUnixSystem.cxx:2172
#3 TUnixSystem::StackTrace (this=0x55a9778f59a0) at /home/sam/Root/root_src/core/unix/src/TUnixSystem.cxx:2419
#4 0x00007f7f7216094c in TUnixSystem::DispatchSignals (this=0x55a9778f59a0, sig=kSigSegmentationViolation) at /home/sam/Root/root_src/core/unix/src/TUnixSystem.cxx:1294
#5
#6 0x00007f7f713fc4d5 in _IO_new_fsetpos (fp=0x7f7f72056f10 <G__G__Meta_6_0_187(G__value*, char const*, G__param*, int)>, posp=0x55a977927a38) at iofsetpos.c:48
#7 0x00007f7f70aa2490 in G__interpret_func (result7=result7
entry=0x7ffee070d770, funcname=0x55a97790a3a0 "~TParticleBlockEntry", libp=libp
entry=0x7ffee070d7b0, hash=, p_ifunc=0x55a977927a10, funcmatch=funcmatch
entry=1, memfunc_flag=) at /home/sam/Root/root_src/cint/cint/src/ifunc.cxx:6417
#8 0x00007f7f70a93b45 in G__getfunction (item=0x55a9778fc9e0 "~TParticleBlockEntry()", known3=known3
entry=0x7ffee071824c, memfunc_flag=, memfunc_flag
entry=5) at /home/sam/Root/root_src/cint/cint/src/func.cxx:2660
#9 0x00007f7f70ae186d in G__free_tempobject () at /home/sam/Root/root_src/cint/cint/src/parse.cxx:8158
#10 0x00007f7f7212319b in TCint::ProcessLine (this=0x55a9778fbb20, line=0x7f7f7227dd8e "TRint::EndOfLineAction();", error=0x0) at /home/sam/Root/root_src/core/meta/src/TCint.cxx:542
#11 0x00007f7f7211e5f7 in TCint::ProcessLineSynch (this=0x55a9778fbb20, line=0x7f7f7227dd8e "TRint::EndOfLineAction();", error=0x0) at /home/sam/Root/root_src/core/meta/src/TCint.cxx:631
#12 0x00007f7f7267b796 in TRint::Run (this=0x55a977a89220, retrn=) at /home/sam/Root/root_src/core/rint/src/TRint.cxx:418
#13 0x000055a9766e820c in main (argc=, argv=0x7ffee071a588) at /home/sam/Root/root_src/main/src/rmain.cxx:29

The lines below might hint at the cause of the crash.
If they do not help you then please submit a bug report at
http://root.cern.ch/bugs. Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.

#6 0x00007f7f713fc4d5 in _IO_new_fsetpos (fp=0x7f7f72056f10 <G__G__Meta_6_0_187(G__value*, char const*, G__param*, int)>, posp=0x55a977927a38) at iofsetpos.c:48

Root > .q
/home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/CorsikaPlotter1./home/sam/Simulation/VENUS2-Gheisha/corsika-76900/src/utils/coast/CorsikaRead/CorsikaPlotter1.cc

Please sign in to comment.