Changes between Initial Version and Version 1 of Ticket #1143, comment 8
- Timestamp:
- Sep 7, 2017, 3:47:33 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1143, comment 8
initial v1 1 1 I downloaded and installed the pre-build version as you suggested above and then I ran the code the way you fixed and suggested above. 2 2 {{{ 3 root [0] gSystem->Load("libDelphes.so"); 3 root [0] #include <vector> 4 root [1] gSystem->Load("libDelphes.so"); 4 5 cling::DynamicLibraryManager::loadLibrary(): /home/bforland/WORKING/MG5_aMC_v2_5_3/Delphes/libDelphes.so: undefined symbol: _ZN8TFormula11ShowMembersER16TMemberInspector 5 root [ 1] int go(){6 root (cont'ed, cancel with .@) [ 2]vector<Jet *> bJets;7 root (cont'ed, cancel with .@) [ 3]return bJets.size();8 root (cont'ed, cancel with .@) [ 4]}6 root [2] int go(){ 7 root (cont'ed, cancel with .@) [3]vector<Jet *> bJets; 8 root (cont'ed, cancel with .@) [4]return bJets.size(); 9 root (cont'ed, cancel with .@) [5]} 9 10 ROOT_prompt_2:1:8: error: use of undeclared identifier 'Jet' 10 11 vector<Jet *> bJets; … … 16 17 return bJets.size(); 17 18 ^ 18 root [ 5]19 root [6] 19 20 }}} 20 21