]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Maximal number of good tracks increased to 20000.
authorkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 10 Jan 2001 09:36:02 +0000 (09:36 +0000)
committerkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 10 Jan 2001 09:36:02 +0000 (09:36 +0000)
TPC/AliTPCComparison.C

index 74d540ac18f6a5f456fe9d17ae6ab56d70a0ec88..3c8258313eaf61cd675224457b260d9b604afffd 100644 (file)
@@ -49,7 +49,7 @@ Int_t AliTPCComparison() {
    cf->Close();
 
 /////////////////////////////////////////////////////////////////////////
-   GoodTrack gt[7000];
+   GoodTrack gt[20000];
    Int_t ngood=0;
    ifstream in("good_tracks");
    if (in) {
@@ -59,7 +59,7 @@ Int_t AliTPCComparison() {
               >>gt[ngood].x  >>gt[ngood].y >>gt[ngood].z) {
          ngood++;
          cerr<<ngood<<'\r';
-         if (ngood==7000) {
+         if (ngood==20000) {
             cerr<<"Too many good tracks !\n";
             break;
          }
@@ -67,7 +67,7 @@ Int_t AliTPCComparison() {
       if (!in.eof()) cerr<<"Read error (good_tracks) !\n";
    } else {
       cerr<<"Marking good tracks (this will take a while)...\n";
-      ngood=good_tracks(gt,7000);
+      ngood=good_tracks(gt,20000);
       ofstream out("good_tracks");
       if (out) {
          for (Int_t ngd=0; ngd<ngood; ngd++)