2121using o2 ::itsmft ::Digit ;
2222using o2 ::itsmft ::SegmentationAlpide ;
2323using namespace o2 ::its ;
24+ using namespace std ;
2425
2526//////////////////////////////////////////
2627//////////////////////////////////////////
@@ -166,7 +167,7 @@ class Cluster
166167//////////////////////////////////////////
167168void AnalyzeClusters (Int_t nev , const map < UInt_t , Cluster > & clusters , TH1F * freqDist , TH1F * cSizeDist )
168169{
169- cout << ">>> Event " << nev << endl ;
170+ std :: cout << ">>> Event " << nev << std :: endl ;
170171 Float_t x , z ;
171172 Long64_t shapeId ;
172173 map < Long64_t , Int_t > csFrequency ;
@@ -181,33 +182,33 @@ void AnalyzeClusters(Int_t nev, const map<UInt_t, Cluster>& clusters, TH1F* freq
181182 o2 ::itsmft ::ClusterShape * cs = Cluster ::PixelsToClusterShape (pv );
182183 shapeId = cs -> GetShapeID ();
183184 cSizeDist -> Fill (cs -> GetNFiredPixels ());
184- cout << endl
185- << shapeId << ":" << endl
186- << * cs << endl
187- << endl ;
185+ std :: cout << std :: endl
186+ << shapeId << ":" << std :: endl
187+ << * cs << std :: endl
188+ << std :: endl ;
188189
189190 if (csFrequency .find (shapeId ) == csFrequency .end ())
190191 csFrequency [shapeId ] = 0 ;
191192 csFrequency [shapeId ] += 1 ;
192193
193194 // if (cls.GetNClusters(i) > 0) {
194- // cout << " [";
195+ // std:: cout << " [";
195196 // for (auto j = 0; j < cls.GetNClusters(i); ++j) {
196197 // Pixel p = cls.GetPixel(i, j);
197- // cout << "(" << p.GetRow() << "," << p.GetCol() << ")";
198+ // std:: cout << "(" << p.GetRow() << "," << p.GetCol() << ")";
198199 // //SegmentationAlpide::detectorToLocal(p.GetRow(),p.GetCol(),x,z);
199200 // //cout << "(" << x << "," << z << ")";
200- // if (j < cls.GetNClusters(i)-1) cout << " ";
201+ // if (j < cls.GetNClusters(i)-1) std:: cout << " ";
201202 // }
202- // cout << "]";
203+ // std:: cout << "]";
203204 // }
204205
205- //if (i < 6) cout << ", ";
206- //else cout << endl;
206+ //if (i < 6) std:: cout << ", ";
207+ //else std:: cout << std:: endl;
207208 }
208209 }
209- cout << ">>>>>>>>>>>>>>>>>" << endl
210- << endl ;
210+ std :: cout << ">>>>>>>>>>>>>>>>>" << std :: endl
211+ << std :: endl ;
211212
212213 int i = 0 ;
213214 std ::multimap < Int_t , Long64_t > fmap = flip_map (csFrequency );
0 commit comments