]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Max number of tracks increased from 15000 to 30000
authorbarbera <barbera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 2 Oct 2001 15:48:56 +0000 (15:48 +0000)
committerbarbera <barbera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 2 Oct 2001 15:48:56 +0000 (15:48 +0000)
ITS/ITStracks.C

index 71ff8a0fe87db2af5b456fcad2860d5ad34de9c4..4bd7d7a6e18753f27f53d5649b49364520428649 100644 (file)
@@ -17,7 +17,7 @@ Int_t ITStracks(Int_t evNumber1=0,Int_t evNumber2=0,Int_t nclust=5) {
 
   cerr<<"Select tracks which have nclust rec points in ITS...\n";
 
-  GoodTrack gt[15000];
+  GoodTrack gt[30000];
   Int_t ngood=0;
   ifstream in("good_tracks_tpc");
    ofstream out("itsgood_tracks");  
@@ -30,7 +30,7 @@ Int_t ITStracks(Int_t evNumber1=0,Int_t evNumber2=0,Int_t nclust=5) {
   >>gt[ngood].ptg >>gt[ngood].flag) {
     ngood++;
     cerr<<ngood<<'\r';
-    if (ngood==15000) {
+    if (ngood==30000) {
       cerr<<"Too many good tracks !\n";
       break;
     }