Long list of warnings when executing restRoot

REST version : v2.2.19.
REST commit : fa4f0126

I have just moved to the development branch (I was still in 2.2.18), and now when I try to execute restRoot I get a long list of warnings mostly related to files in REST_PATH/install/macros.
I attach the terminal output with all these warnings here: output_restRoot.txt (13.2 KB) .

Any ideas?
Cheers,
Cristina.

Hi Cristina, thanks for posting.

The first error says something like this:

In file included from input_line_333:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/printers/REST_PrintDataBase.C:18:13: error: no viable conversion from 'Int_t' (aka 'int') to 'std::__cxx11::string' (aka 'basic_string<char>')
                db->print(run);

However, the latest REST_PrintDataBase.C code at line 18, at which the error happens, has been updated by in the latest version of the code:

        db->print(Form("select * from rest_runs where run_id=%i", run));

Did you execute make -j4 install after building REST? If this does not solve the problems, please provide the output of executing make -j4 install.

Cheers,
Javier

Yes, I executed make -j4 install.

I have just done git pull before trying to install again, and now the installation fails. See output_make-j4install.txt (2.0 KB)

Hi Cristina, if the output is not extremely long, you may add it directly here so that the text is searchable by the discourse system.

A trick to avoid using a lot of screen space here in discourse is to encapsulate the output between [detail=output] your output [/detail]. As I am doing here. It is effective when [detail] and [\detail] is using a full line. Notice that this trick is good even if it is long.

make -j4 output

cristina@sultan:~/GitLab/REST_v2/build$ git pull
Already up-to-date.
cristina@sultan:~/GitLab/REST_v2/build$ make -j4 install
[ 8%] Built target RestTools
[ 18%] Built target RestCore
[ 33%] Built target RestMetadata
[ 48%] Built target RestEvents
[ 96%] Built target RestProcesses
[ 97%] Linking CXX executable restRoot
[ 97%] Linking CXX executable restManager
[ 98%] Linking CXX executable restG4
…/processes/libRestProcesses.so: referencia a typeinfo for TRestMessagerAndReciever' sin definir ./processes/libRestProcesses.so: collect2: error: ld returned 1 exit status referencia a typeinfo for TRestMessagerAndReciever’ sin definir
collect2: error: ld returned 1 exit status
source/bin/CMakeFiles/restManager.dir/build.make:99: fallo en las instrucciones para el objetivo ‘source/bin/restManager’
source/bin/CMakeFiles/restRoot.dir/build.make:99: fallo en las instrucciones para el objetivo ‘source/bin/restRoot’
make[2]: *** [source/bin/restManager] Error 1
make[2]: *** [source/bin/restRoot] Error 1
CMakeFiles/Makefile2:467: fallo en las instrucciones para el objetivo ‘source/bin/CMakeFiles/restManager.dir/all’
make[1]: *** [source/bin/CMakeFiles/restManager.dir/all] Error 2
make[1]: *** Se espera a que terminen otras tareas…
CMakeFiles/Makefile2:426: fallo en las instrucciones para el objetivo ‘source/bin/CMakeFiles/restRoot.dir/all’
make[1]: *** [source/bin/CMakeFiles/restRoot.dir/all] Error 2
…/…/source/processes/libRestProcesses.so: referencia a `typeinfo for TRestMessagerAndReciever’ sin definir
collect2: error: ld returned 1 exit status
packages/restG4/CMakeFiles/restG4.dir/build.make:338: fallo en las instrucciones para el objetivo ‘packages/restG4/restG4’
make[2]: *** [packages/restG4/restG4] Error 1
CMakeFiles/Makefile2:526: fallo en las instrucciones para el objetivo ‘packages/restG4/CMakeFiles/restG4.dir/all’
make[1]: *** [packages/restG4/CMakeFiles/restG4.dir/all] Error 2
Makefile:129: fallo en las instrucciones para el objetivo ‘all’
make: *** [all] Error 2

TRestMessagerAndReciever is a new class added very recently, I guess, in order for the compilation system to recognise it you need to use again cmake ../. This is a small weakness of the compilation system that does not identify new added classes, and need to be re-identified by using cmake. But at least this way we do not even need to modify the cmake compilation code.

I hope cmake solves the problem.

BTW, @nkx TRestMessagerAndReciever is misspelled, should be TRestMessagerAndReceiver, and I doubt if it would be more appropriate TRestMessengerAndReceiver. If I write Messager in google it replaces by Messenger.

Yes, cmake ../ solved the installation problem.

So now I attach the output of make -j4 install (using Javi’s trick, thanks!) as I still have the list of warnings when I try to execute restRoot.

(EDIT: I don’t know why the font of the hidden text is huge!)

make -j4 output after cmake

cristina@sultan:~/GitLab/quickAnaREST_CAST$ restRoot
Loading library : libRestMetadata.so
Loading library : libRestCore.so
Loading library : libRestEvents.so
Loading library : libRestProcesses.so
Loading library : libRestTools.so
In file included from input_line_334:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/printers/REST_PrintDataBase.C:18:13: error: no viable conversion from ‘Int_t’ (aka ‘int’) to ‘std::__cxx11::string’ (aka ‘basic_string’)
db->print(run);
^~~
/usr/include/c++/6/bits/basic_string.h:397:7: note: candidate constructor not viable: no known conversion from ‘Int_t’ (aka ‘int’) to ‘const std::__cxx11::basic_string &’ for 1st
argument
basic_string(const basic_string& __str)
^
/usr/include/c++/6/bits/basic_string.h:454:7: note: candidate constructor not viable: no known conversion from ‘Int_t’ (aka ‘int’) to 'const char ’ for 1st argument
basic_string(const _CharT
__s, const _Alloc& __a = _Alloc())
^
/usr/include/c++/6/bits/basic_string.h:476:7: note: candidate constructor not viable: no known conversion from ‘Int_t’ (aka ‘int’) to ‘std::__cxx11::basic_string &&’ for 1st argument
basic_string(basic_string&& __str) noexcept
^
/usr/include/c++/6/bits/basic_string.h:503:7: note: candidate constructor not viable: no known conversion from ‘Int_t’ (aka ‘int’) to ‘initializer_list’ for 1st argument
basic_string(initializer_list<_CharT> __l, const _Alloc& __a = _Alloc())
^
/home/cristina/GitLab/REST_v2/install/include/TRestDataBase.h:104:31: note: passing argument to parameter ‘cmd’ here
virtual void print(string cmd) {}
^
In file included from input_line_339:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:15:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:21:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:43:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Metadata class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:47:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestRun class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:63:5: error: use of undeclared identifier ‘cout’
cout << "Total number of entries : " << tr->GetEntries() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:67:5: error: use of undeclared identifier ‘cout’
cout << “Obtainning max/min values” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:69:33: error: use of undeclared identifier ‘cout’
if (evId % 100000 == 0) cout << "Event : " << evId << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:104:5: error: use of undeclared identifier ‘cout’
cout << “Filling histograms” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_QuickLookAnalysis.C:107:33: error: use of undeclared identifier ‘cout’
if (evID % 100000 == 0) cout << "Event : " << evID << endl;
^
In file included from input_line_340:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindGammasEmitted.C:5:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindGammasEmitted.C:11:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindGammasEmitted.C:33:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Metadata class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindGammasEmitted.C:37:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestRun class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindGammasEmitted.C:60:32: error: use of undeclared identifier ‘cout’
if (evID % 50000 == 0) cout << "Event : " << evID << endl;
^
In file included from input_line_341:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents.C:14:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents.C:19:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents.C:40:5: error: use of undeclared identifier ‘cout’
cout << "Total contribution in the ROI : " << totalContribution << endl;
^
In file included from input_line_342:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:6:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:13:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:35:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Metadata class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:39:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestRun class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:55:5: error: use of undeclared identifier ‘cout’
cout << "Number of biasing volumes : " << metadata->GetNumberOfBiasingVolumes() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:65:9: error: use of undeclared identifier ‘cout’
cout << "Number of counts in bias " << i << " " << h->Integral() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:80:5: error: use of undeclared identifier ‘cout’
cout << "Number of events in ROI : " << roiEvents << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetBiasingError.C:84:5: error: use of undeclared identifier ‘cout’
cout << "The error is : " << error << endl;
^
In file included from input_line_343:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:8:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:11:5: error: use of undeclared identifier ‘cout’
cout << “x” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:14:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:29:5: error: use of undeclared identifier ‘cout’
cout << "Total number of entries : " << run->GetEntries() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:36:29: error: use of undeclared identifier ‘cout’
if (i % 10000 == 0) cout << "Event " << i << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_GetROIEvents_Fiducial.C:73:5: error: use of undeclared identifier ‘cout’
cout << "Total contribution in the ROI : " << totalContribution << endl;
^
In file included from input_line_344:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:5:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << ", storing info in " << fOutName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:7:5: error: unknown type name ‘ofstream’
ofstream fOut;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:14:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:20:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Run class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:38:5: error: use of undeclared identifier ‘cout’
cout << "Total number of entries : " << run->GetEntries() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ListIsotopes.C:86:5: error: use of undeclared identifier ‘cout’
cout << “closing file” << endl;
^
In file included from input_line_345:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:15:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:21:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:43:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Metadata class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:47:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestRun class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:67:33: error: use of undeclared identifier ‘cout’
if (evID % 100000 == 0) cout << "Event : " << evID << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_MeanTrackLeng.C:75:5: error: use of undeclared identifier ‘cout’
cout << "Mean track length : " << meanLength / tracks << endl;
^
In file included from input_line_346:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:5:5: error: use of undeclared identifier ‘cout’
cout << "Filename : " << fName << " looking for " << fIsotope << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:13:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:19:9: error: use of undeclared identifier ‘cout’
cout << “WARNING no TRestG4Run class was found” << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:39:5: error: use of undeclared identifier ‘cout’
cout << "Total number of entries : " << run->GetEntries() << endl;
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:53:25: error: use of undeclared identifier ‘cout’
cout << "Track : " << i << " → " << ev->GetTrack(i)->GetParticleName() << " "
^
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_FindIsotopes.C:64:9: error: use of undeclared identifier ‘cout’
cout << "Number of " << fIsotope << " nuclei activated = " << j << endl;
^
In file included from input_line_347:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ReadNEvents_inROI.C:35:13: error: use of undeclared identifier ‘cout’
cout << n << " event with " << en << " energy in sensitive volume " << endl;
^
In file included from input_line_348:1:
/media/storage/home/cristina/GitLab/REST_v2/install/macros/geant4/REST_ReadNEvents.C:10:9: error: use of undeclared identifier ‘cout’
cout << “WARNING. Input file does not exist” << endl;
^

| Welcome to ROOT 6.14/04 http://root.cern.ch |
| (c) 1995-2018, The ROOT Team |
| Built for linuxx8664gcc |
| From tags/v6-14-04@v6-14-04, Aug 23 2018, 17:00:44 |

Try ‘.help’, ‘.demo’, ‘.license’, ‘.credits’, ‘.quit’/’.q’

A quick solution is to remove /media/storage/home/cristina/GitLab/REST_v2/install/macros/ directory or just rename it.

It seems that /media/storage/home/cristina/GitLab/REST_v2/install/macros/printers/REST_PrintDataBase.C is still out-dated. Can you show the install messages from make install? Something like:

[ 98%] Built target restManager
[100%] Built target restG4
Install the project...
-- Install configuration: "Debug"
-- Installing: /home/nkx/REST_v2/include/TRestFFT.h
-- Installing: /home/nkx/REST_v2/include/TRestMesh.h
-- Installing: /home/nkx/REST_v2/include/TRestLinearTrack.h
-- Installing: /home/nkx/REST_v2/include/TRestLinearTrackEvent.h
-- Installing: /home/nkx/REST_v2/include/TRestTrack.h
...

By the way, I have renamed the added class to TRestMessengerAndReceiver as javier suggests. If you pull from git again you need to rerun cmake.

I post here the output of make install:

Make install output

[ 8%] Built target RestTools
[ 18%] Built target RestCore
[ 34%] Built target RestMetadata
[ 49%] Built target RestEvents
[ 96%] Built target RestProcesses
[ 97%] Built target restRoot
[ 97%] Built target restManager
[100%] Built target restG4
Install the project…
– Install configuration: “Release”
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFFT.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMesh.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestLinearTrack.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestLinearTrackEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrack.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4Event.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4Hits.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4Track.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHits.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignal.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignal.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestVolumeHits.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestEveEventViewer.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4EventViewer.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsEventViewer.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutEventViewer.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDAQMetadata.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestBiasingVolume.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4Metadata.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4PrimaryGenerator.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestParticle.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestParticleCollection.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestParticleSource.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestPhysicsLists.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDBEntryLogger.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDetectorSetup.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDriftVolume.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestGainMap.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestGas.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestGeometry.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMessengerAndReceiver.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadout.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutChannel.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutMapping.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutModule.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutPixel.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutPlane.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestAnalysisHistogramViewerProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFindG4BlobAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFindTrackBlobsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestGeant4AnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestPointLikeAnaProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestPointLikeTrackAnaProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestPositionMappingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalChannelActivityProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawVetoAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReadoutAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalChannelActivityProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSingleChannelAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTriggerAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestAvalancheProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDataQualityProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDataQualityRules.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestElectronDiffusionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFastHitsToTrackProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFiducializationProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestG4toHitsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestGarfieldDriftProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHits3DReconstructionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsNormalizationProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsReductionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsRotateAndTraslateProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsShuffleProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestHitsToTrackProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMySQLToAnalysisProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawCommonNoiseReductionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalFittingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRealTimeDrawingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalToHitsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalToRawSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalZeroSuppresionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSmearingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSummaryProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackDetachIsolatedNodesProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackLinearizationProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackPathMinimizationProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackReconnectionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackReductionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTrackToHitsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestAFTERToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestCoBoAsAdToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMultiCoBoAsAdToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMultiFEMINOSToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawToSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSharedMemoryBufferToRawSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestUSTCElectronicsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/mygblink.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestFindResponseSignalProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalAddNoiseProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalRecoverChannelsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalRemoveChannelsProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalShapingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalDeconvolutionProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestBenchMarkProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDaqChannelSwitchingProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRawSignalViewerProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSignalViewerProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/GdmlPreprocessor.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/RmlUpdateTool.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestAnalysisPlot.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestAnalysisTree.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestBrowser.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestEvent.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestEventProcess.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestEventViewer.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestManager.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMetadata.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestMetadataPlot.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestProcessRunner.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestRun.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTask.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestThread.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestVersion.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/tinystr.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/tinyxml.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/bigguy.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/combs.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/config.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/consec1.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/cut.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/cuttree.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/delaunay.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/edgegen.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/fmatch.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/heldkarp.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/kdtree.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/linkern.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/localcut.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/lp.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/machdefs.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/macrorus.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/mlinkern.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/necklace.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/pq.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/pqsets.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/tinytsp.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/trackMinimization.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/tsp.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/util.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/verify.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestDataBase.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestPhysics.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestReflector.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestStringHelper.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestStringOutput.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestSystemOfUnits.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/include/TRestTools.h
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./LICENCE
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/plotAnaSpectrum.rml
– Installing: /home/cristina/GitLab/REST_v2/install/./examples/README.md
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/saveMetadataFile.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/multiFeminos.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/FECAnalysis.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/metadataPlot.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/g4ToHits.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/multiCoboAnalysis.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/g4Analysis.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/electronicsSimu.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/signalAnalysisLite.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/generateGasFile.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewEvents.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewG4Event.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewGeometry.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewReadoutEvent.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewHitsEvent.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/viewers/REST_ViewReadout.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general/REST_Fit.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general/REST_CreateHisto.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general/REST_DataSummary.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general/REST_IntegrateSmearing.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/general/REST_Integrate.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers/REST_PrintTrees.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers/REST_PrintFileContents.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers/REST_PrintEvents.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers/REST_PrintDataBase.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/printers/REST_PrintMetadata.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_QuickLookAnalysis.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_FindGammasEmitted.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_GetROIEvents.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_GetBiasingError.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_GetROIEvents_Fiducial.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_ListIsotopes.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_MeanTrackLeng.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_FindIsotopes.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_ReadNEvents_inROI.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/geant4/REST_ReadNEvents.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/CMakeLists.txt
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/REST_ListMacros.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_ValidateGeometry.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_MergeFiles.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_DrawCombinedGasCurves.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_ProduceReponseSignal.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_CheckReadout.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_CheckRunFileList.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_GenerateGasFile.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./macros/tools/REST_DrawResponseSignal.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/scripts/restv2_1ToXml.py
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/dataURL
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/definitions
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/definitions/processes.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/definitions/gases.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/definitions/readouts.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/definitions/microbulkModule.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_10MHz_Gain0x2_Shaping0xF.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_SJTU_2017Feb22.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_100MHz_Gain0x2_Shaping0x7.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_100MHz_Gain0x2_Shaping0xB.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_12.5MHz_Gain0x1_Shaping0x4.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/signal/AGET_Response_100MHz_Gain0x2_Shaping0xF.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/decoding
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/decoding/pandaX_3mm.dec
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/decoding/MM_On_AGET0-1.dec
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/decoding/pandaX_3mm_SJTU.dec
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/decoding/IAXOD0.dec
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/README.md
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Xe136bb0n22PlusM7.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Xe136bb0n.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/BiPo214.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Xe136nldbdM1.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/README_generator
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/K40.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Tl208.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Pb212.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Xe136bb0n01PlusM1.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Xe136bb0n21PlusM7.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/BiPo212.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/generator/Pb214.dat
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/HighEnergyGammaBiasing.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/CosmicAngles.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/README.md
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/CosmicNeutrons.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/Tritium.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/RadioactivityNeutrons.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/CosmicGammas.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/NeutronSources.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/RadioactivityGammas.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/distributions/Muons.root
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/acquisition
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/acquisition/ped
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./data/acquisition/run
– REST release : v2.2.19
– REST date : 2020-08-20 13:05:12 +0800
– REST commit : a5f6b224
– REST branch : development
– Installing: /home/cristina/GitLab/REST_v2/install/bin/rest-config
– Up-to-date: /home/cristina/GitLab/REST_v2/install/lib/libRestTools.so
– Up-to-date: /home/cristina/GitLab/REST_v2/install/lib/libRestCore.so
– Up-to-date: /home/cristina/GitLab/REST_v2/install/lib/libRestMetadata.so
– Up-to-date: /home/cristina/GitLab/REST_v2/install/lib/libRestEvents.so
– Up-to-date: /home/cristina/GitLab/REST_v2/install/lib/libRestProcesses.so
– Up-to-date: /home/cristina/GitLab/REST_v2/install/bin/restManager
– Up-to-date: /home/cristina/GitLab/REST_v2/install/bin/restRoot
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples
– Installing: /home/cristina/GitLab/REST_v2/install/./examples/README.md
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/generateExamples.sh
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/cleanExamples.sh
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/biasing
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/biasing/externalTh232.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/biasing/externalU238.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/README
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates/biasedIsotopeFromVirtualBox.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates/decay0FromVolume.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates/isotopeFromVCylinder.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates/isotopeFromPoint.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/templates/isotopeFromVolume.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/resistive
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/resistive/pandaXIII_Setup.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/resistive/pandaXIII_Geometry.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/traditional
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/traditional/pandaXIII_Setup_WT12m.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/traditional/pandaXIII_Setup_WT6m.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/pandaXIII/geometry/traditional/pandaXIII_Geometry.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/v2.1.7/replaceRMLVars.py
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/README.md
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/Validate.C
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/NLDBD.rml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/geometry
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/geometry/myGeometryTemplate.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/./examples/01.NLDBD/geometry/mySetupTemplate.gdml
– Up-to-date: /home/cristina/GitLab/REST_v2/install/macros/mac
– Up-to-date: /home/cristina/GitLab/REST_v2/install/macros/mac/vis.mac
– Up-to-date: /home/cristina/GitLab/REST_v2/install/macros/mac/visualizacion.mac
– Up-to-date: /home/cristina/GitLab/REST_v2/install/macros/mac/visualtrack.mac
– Up-to-date: /home/cristina/GitLab/REST_v2/install/bin/restG4

I have renamed /media/storage/home/cristina/GitLab/REST_v2/install/macros/ and I don’t get the warnings anymore.

is /media/storage/home/ and /home/ a same directory? Otherwise maybe you are mixing up two installations

I would say it’s the same, yes.