Skip to content
Snippets Groups Projects
Commit 6aac10ef authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* Fixing compilation error of GANIL TAC

        - std:: was missing in front of vector
parent 5a8739f2
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ class TTacData : public TObject { ...@@ -34,7 +34,7 @@ class TTacData : public TObject {
UShort_t fTAC_CATS1_HF; UShort_t fTAC_CATS1_HF;
UShort_t fTAC_CATS1_EXO; UShort_t fTAC_CATS1_EXO;
UShort_t fTAC_MM_HF; UShort_t fTAC_MM_HF;
vector<UShort_t> fTAC_MM_HF_DetectorNbr; std::vector<UShort_t> fTAC_MM_HF_DetectorNbr;
UShort_t fTAC_MM_EXO; UShort_t fTAC_MM_EXO;
UShort_t fTAC_BARREL_EXO; UShort_t fTAC_BARREL_EXO;
UShort_t fTAC_BARREL_CATS1FAG; UShort_t fTAC_BARREL_CATS1FAG;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment