/[PAMELA software]/DarthVader/TrackerLevel2/src/TrkLevel1.cpp
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/src/TrkLevel1.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by pam-fi, Tue Sep 5 15:15:40 2006 UTC revision 1.13 by pam-fi, Mon Feb 5 16:01:51 2007 UTC
# Line 5  Line 5 
5  #include <TrkLevel1.h>  #include <TrkLevel1.h>
6  #include <iostream>  #include <iostream>
7  using namespace std;  using namespace std;
8    //......................................
9    // F77 routines
10    //......................................
11    extern "C" {
12            
13    //      int readetaparam_();
14        float cog_(int*,int*);
15        float pfaeta_(int*,float*);
16        float pfaeta2_(int*,float*);
17        float pfaeta3_(int*,float*);
18        float pfaeta4_(int*,float*);
19            
20    }
21  //--------------------------------------  //--------------------------------------
22  //  //
23  //  //
24  //--------------------------------------  //--------------------------------------
25  TrkCluster::TrkCluster(){  TrkCluster::TrkCluster(){
26                    
27          view     = 0;  //    cout << "TrkCluster::TrkCluster()"<<endl;
28          ladder   = 0;      view     = -1;
29          maxs     = 0;      maxs     = -1;
30          mult     = 0;      indmax   = -1;
31          sgnl     = 0;          
32          whichtrk = -1;      CLlength = 0;
33          CLlength = 0;      clsignal = 0;
34          clsignal = 0;      clsigma  = 0;
35          clsigma  = 0;      cladc    = 0;
36          cladc    = 0;      clbad    = 0;
         clbad    = 0;  
37    
38  };  };
39  //--------------------------------------  //--------------------------------------
40  //  //
41  //  //
42  //--------------------------------------  //--------------------------------------
43  TrkCluster::~TrkCluster(){  TrkCluster::TrkCluster(const TrkCluster& t){
44                    
45        view     = t.view;
46        maxs     = t.maxs;
47        indmax   = t.indmax;
48            
49        CLlength = t.CLlength;      
50        if(CLlength){
51            clsignal = new Float_t[CLlength];
52            clsigma  = new Float_t[CLlength];
53            cladc    = new Int_t[CLlength];
54            clbad    = new Bool_t[CLlength];
55            for(Int_t i=0; i<CLlength;i++){
56                clsignal[i] = t.clsignal[i];
57                clsigma[i]  = t.clsigma[i];
58                cladc[i]    = t.cladc[i];
59                clbad[i]    = t.clbad[i];
60            };
61        };
62    };
63    //--------------------------------------
64    //
65    //
66    //--------------------------------------
67    void TrkCluster::Clear(){
68        
69    //    cout << "void TrkCluster::Clear()"<<endl;
70        if(CLlength){
71          delete [] clsignal;          delete [] clsignal;
72          delete [] clsigma;          delete [] clsigma;
73          delete [] cladc;          delete [] cladc;
74          delete [] clbad;          delete [] clbad;
75        }
76    
77        view     = 0;
78        maxs     = 0;
79        indmax   = 0;
80            
81        CLlength = 0;
82        clsignal = 0;
83        clsigma  = 0;
84        cladc    = 0;
85        clbad    = 0;
86    
87  };  };
88  //--------------------------------------  //--------------------------------------
89  //  //
90  //  //
91  //--------------------------------------  //--------------------------------------
92  TrkCluster::TrkCluster(const TrkCluster& t){  /**
93             * Evaluate the cluster signal including a maximum number of adjacent
94          view     = t.view;   * strips, around maxs, having a significant signal.
95          ladder   = t.ladder;   * @param nstrip   Maximum number of strips.
96          maxs     = t.maxs;   * @param cut      Inclusion cut ( s > cut*sigma ).
97          mult     = t.mult;   * If nstrip<=0 only the inclusion cut is used to determine the cluster size.
98          sgnl     = t.sgnl;   */
99          whichtrk = t.whichtrk;  Float_t TrkCluster::GetSignal(Int_t nstrip, Float_t cut){
100        
101        if(CLlength<=0)return 0;
102    
103        Float_t s = 0;
104        
105        if( nstrip<=0 ){
106    //          for(Int_t is = 0; is < CLlength; is++){
107    //              Float_t scut = cut*clsigma[is];
108    //              if(clsignal[is] > scut) s += clsignal[is];
109    //          };
110            for(Int_t is = indmax+1; is < CLlength; is++){
111                Float_t scut = cut*clsigma[is];
112                if(clsignal[is] > scut) s += clsignal[is];
113                else break;
114            };
115            for(Int_t is = indmax; is >=0; is--){
116                Float_t scut = cut*clsigma[is];
117                if(clsignal[is] > scut) s += clsignal[is];
118                else break;
119            };
120            return s;
121        };
122        
123        
124        Int_t il = indmax;
125        Int_t ir = indmax;
126        Int_t inc = 0;
127    
128        if( clsignal[indmax] < cut*clsigma[indmax] ) return 0;
129    
130        while ( inc < nstrip ){
131            Float_t sl = -100000;
132            Float_t sr = -100000;
133            if( il >= 0       ) sl = clsignal[il];
134            if( ir < CLlength ) sr = clsignal[ir];
135            if( sl == sr && inc == 0 ){
136                s += clsignal[il]; //cout << inc<<" - "<< clsignal[il]<<" "<<s<<endl;
137                il--;
138                ir++;
139            }else if ( sl >= sr && sl > cut*clsigma[il] && inc !=0 ){
140                s += sl;//cout << inc<<" - "<< clsignal[il]<<" "<<s<<endl;
141                il--;
142            }else if ( sl < sr && sr > cut*clsigma[ir] ){
143                s += sr;//cout << inc<<" - " << clsignal[ir]<<" "<<s<<endl;
144                ir++;
145            }else break;
146            
147            inc++;
148        }
149        return s;
150    };
151    
152    
153    /**
154     * Evaluate the cluster signal-to-noise, as defined by Turchetta, including a
155     * maximum number of adjacent strips, around maxs, having a significant signal.
156     * @param nstrip   Maximum number of strips.
157     * @param cut      Inclusion cut ( s > cut*sigma ).
158     * If nstrip<=0 only the inclusion cut is used to determine the cluster size.
159     */
160    Float_t TrkCluster::GetSignalToNoise(Int_t nstrip, Float_t cut){
161                    
162          CLlength = t.CLlength;        if(CLlength<=0)return 0;
163          clsignal = new Float_t[CLlength];  
164          clsigma  = new Float_t[CLlength];      Float_t sn = 0;
165          cladc    = new Int_t[CLlength];      
166          clbad    = new Bool_t[CLlength];      if( nstrip<=0 ){
167          for(Int_t i=0; i<CLlength;i++){          for(Int_t is = indmax+1; is < CLlength; is++){
168                  clsignal[i] = t.clsignal[i];              Float_t scut = cut*clsigma[is];
169                  clsigma[i]  = t.clsigma[i];              if(clsignal[is] > scut) sn += clsignal[is]/clsigma[is];
170                  cladc[i]    = t.cladc[i];              else break;
                 clbad[i]    = t.clbad[i];  
171          };          };
172            for(Int_t is = indmax; is >=0; is--){
173                Float_t scut = cut*clsigma[is];
174                if(clsignal[is] > scut) sn += clsignal[is]/clsigma[is];
175                else break;
176            };
177            return sn;
178        };
179        
180        
181        Int_t il = indmax;
182        Int_t ir = indmax;
183        Int_t inc = 0;
184    
185        if( clsignal[indmax] < cut*clsigma[indmax] ) return 0;
186    
187        while ( inc < nstrip ){
188            Float_t sl = -100000;
189            Float_t sr = -100000;
190            if( il >= 0       ) sl = clsignal[il];
191            if( ir < CLlength ) sr = clsignal[ir];
192            if( sl == sr && inc == 0 ){
193                sn += clsignal[il]/clsigma[il];
194                il--;
195                ir++;
196            }else if ( sl >= sr && sl > cut*clsigma[il] && inc !=0 ){
197                sn += sl/clsigma[il];
198                il--;
199            }else if ( sl < sr && sr > cut*clsigma[ir] ){
200                sn += sr/clsigma[ir];
201                ir++;
202            }else break;
203            
204            inc++;
205        }
206        return sn;
207    };
208    /**
209     * Evaluate the cluster multiplicity.
210     * @param cut Inclusion cut.
211     */
212    Int_t TrkCluster::GetMultiplicity(Float_t cut){
213    
214        if(CLlength<=0)return 0;
215    
216        Int_t m = 0;
217    
218        for(Int_t is = indmax+1; is < CLlength; is++){
219            Float_t scut = cut*clsigma[is];
220            if(clsignal[is] > scut) m++;
221            else break;
222        };
223        for(Int_t is = indmax; is >=0; is--){
224            Float_t scut = cut*clsigma[is];
225            if(clsignal[is] > scut) m++;
226            else break;
227        };
228        return m;
229    };
230    /**
231     * True if the cluster contains bad strips.
232     * @param nbad Number of strips around the maximum.
233     */
234    Bool_t TrkCluster::IsBad(Int_t nbad){
235                    
236        if(CLlength<=0)return 0;
237    
238        Int_t il,ir;
239        il = indmax;
240        ir = indmax;
241        for(Int_t i=1; i<nbad; i++){
242            if (ir == CLlength && il == 0)break;
243            else if (ir == CLlength && il != 0)il--;
244            else if (ir != CLlength && il == 0)ir++;
245            else{
246                if(clsignal[il-1] > clsignal[ir+1])il--;
247                else ir++;
248            }
249        }
250        Int_t isbad = 0;
251        for(Int_t i=il; i<=ir; i++)isbad += clbad[i];
252        
253        return ( isbad != nbad );
254  };  };
255    /**
256     * True if the cluster contains saturated strips.
257     * @param nbad Number of strips around the maximum.
258     */
259    Bool_t TrkCluster::IsSaturated(Int_t nbad){
260    
261        if(CLlength<=0)return 0;
262    
263        Int_t il,ir;
264        il = indmax;
265        ir = indmax;
266        for(Int_t i=1; i<nbad; i++){
267            if (ir == CLlength && il == 0)break;
268            else if (ir == CLlength && il != 0)il--;
269            else if (ir != CLlength && il == 0)ir++;
270            else{
271                if(clsignal[il-1] > clsignal[ir+1])il--;
272                else ir++;
273            }
274        }
275        Int_t isbad = 0;
276        for(Int_t i=il; i<=ir; i++){
277            if( IsX() && cladc[i] > 2980 )isbad++;
278            if( IsY() && cladc[i] <   80 )isbad++;
279        }
280        return ( isbad != 0 );
281        
282    }
283  //--------------------------------------  //--------------------------------------
284  //  //
285  //  //
286  //--------------------------------------  //--------------------------------------
287  void TrkCluster::Dump(){  void TrkCluster::Dump(){
288    
289          cout << "----- Cluster" << endl;      cout << "----- Cluster" << endl;
290          cout << "View "<<view << " - Ladder "<<ladder<<endl;      cout << "View "<<view << " - Ladder "<<GetLadder()<<endl;
291          cout << "(Track ID "<<whichtrk<<")"<<endl;      cout << "Position of maximun "<< maxs <<endl;
292          cout << "Position of maximun "<<maxs<<endl;      cout << "Multiplicity        "<< GetMultiplicity() <<endl;
293          cout << "Multiplicity        "<<mult<<endl;      cout << "Tot signal          "<< GetSignal() << " (ADC channels)"<<endl ;
294          cout << "Tot signal          "<<sgnl<< " (ADC channels)";      cout << "Signal/Noise        "<< GetSignalToNoise();
295          cout <<endl<< "Strip signals       ";      cout <<endl<< "Strip signals       ";
296          for(Int_t i =0; i<CLlength; i++)cout << " " <<clsignal[i];      for(Int_t i =0; i<CLlength; i++)cout << " " <<clsignal[i];
297          cout <<endl<< "Strip sigmas        ";      cout <<endl<< "Strip sigmas        ";
298          for(Int_t i =0; i<CLlength; i++)cout << " " <<clsigma[i];      for(Int_t i =0; i<CLlength; i++)cout << " " <<clsigma[i];
299          cout <<endl<< "Strip ADC           ";      cout <<endl<< "Strip ADC           ";
300          for(Int_t i =0; i<CLlength; i++)cout << " " <<cladc[i];      for(Int_t i =0; i<CLlength; i++)cout << " " <<cladc[i];
301          cout <<endl<< "Strip BAD           ";      cout <<endl<< "Strip BAD           ";
302          for(Int_t i =0; i<CLlength; i++)cout << " " <<clbad[i];      for(Int_t i =0; i<CLlength; i++){
303          cout << endl;          if(i==indmax)cout << "  *" <<clbad[i]<<"*";
304            else cout << " " <<clbad[i];
305        }
306        cout << endl;
307                    
308  }  }
309  //--------------------------------------  //--------------------------------------
310  //  //
311  //  //
312  //--------------------------------------  //--------------------------------------
313  TrkLevel1::TrkLevel1(){  /**
314     * Method to fill a level1 struct with only one cluster (done to use F77 p.f.a. routines on a cluster basis).
315     */
316    cTrkLevel1* TrkCluster::GetLevel1Struct(){
317                    
318    //    cTrkLevel1* l1 = new cTrkLevel1;
319    
320        cTrkLevel1* l1 = &level1event_ ;
321            
322        l1->nclstr1 = 1;
323        l1->view[0] = view;
324        l1->ladder[0] = GetLadder();
325        l1->maxs[0] = maxs;
326        l1->mult[0] = GetMultiplicity();
327        l1->dedx[0] = GetSignal();
328        l1->indstart[0] = 1;
329        l1->indmax[0]   = indmax+1;
330        l1->totCLlength = CLlength;
331        for(Int_t i=0; i<CLlength; i++){
332            l1->clsignal[i] = clsignal[i];
333            l1->clsigma[i] = clsigma[i];
334            l1->cladc[i] = cladc[i];
335            l1->clbad[i] = clbad[i];
336        };
337            
338          good1 = -1;      return l1;
339    };
340    //--------------------------------------
341    //
342    //
343    //--------------------------------------
344    /**
345     * Evaluates the Center-Of-Gravity (COG) of the cluster, in strips, relative to the strip with the maximum signal (TrkCluster::maxs).
346     *      @param ncog Number of strips to evaluate COG.  
347     * If ncog=0, the COG of the cluster is evaluated according to the cluster multiplicity (defined by the inclusion cut).
348     * If ncog>0, the COG is evaluated using ncog strips, even if they have a negative signal (according to G.Landi)
349     */
350    Float_t TrkCluster::GetCOG(Int_t ncog){
351                    
352          Cluster = new TClonesArray("TrkCluster");      int ic = 1;
353        GetLevel1Struct();
354        return cog_(&ncog,&ic);
355                    
356          for(Int_t i=0; i<12 ; i++){  };
357  //              crc[i] = -1;  /**
358                  for(Int_t j=0; j<24 ; j++){   * Evaluates the Center-Of-Gravity (COG) of the cluster, in strips, relative to the strip with the maximum signal (TrkCluster::maxs),
359                          cnev[j][i]=0;   * choosing the number of strips according to the angle, as implemented for the eta-algorythm .
360                          cnnev[j][i]=0;   *      @param angle Projected angle in degree.        
361                  };   */
362                  fshower[i]=0;  Float_t TrkCluster::GetCOG(Float_t angle){
363                
364        Int_t neta  = 0;
365    
366    //     Float_t eta = GetETA(0,angle);
367    //     for(neta=2; neta<10; neta++) if( eta == GetETA(neta,angle) ) break;
368    //    if(eta != GetETA(neta,angle) )cout << "Attenzione!! pasticcio "<<endl;
369    
370        if( view%2 ){   //Y
371            neta=2;
372        }else{          //X
373            if( fabs(angle) <= 10. ){
374                neta = 2;
375            }else if( fabs(angle) > 10. && fabs(angle) <= 15. ){
376                neta = 3;
377            }else{
378                neta = 4;
379          };          };
380        };
381    
382        return GetCOG(neta);
383            
384    };
385    //--------------------------------------
386    //
387    //
388    //--------------------------------------
389    /**
390     * Evaluates the cluster position, in strips, relative to the strip with the maximum signal (TrkCluster::maxs), by applying the non-linear ETA-algorythm.
391     *  @param neta  Number of strips to evaluate ETA.
392     *  @param angle Projected angle between particle track and detector plane.
393     * Implemented values of neta are 2,3,4. If neta=0, ETA2, ETA3 and ETA4 are applied according to the angle.
394     */
395    Float_t TrkCluster::GetETA(Int_t neta, float angle){
396            
397    //    cout << "GetETA(neta,angle) "<< neta << " "<< angle;
398    //      LoadPfaParam();
399    
400        float ax = angle;
401        int ic = 1;
402        GetLevel1Struct();
403        if(neta == 0)      return pfaeta_(&ic,&ax);
404        else if(neta == 2) return pfaeta2_(&ic,&ax);
405        else if(neta == 3) return pfaeta3_(&ic,&ax);
406        else if(neta == 4) return pfaeta4_(&ic,&ax);
407        else cout << "ETA"<<neta<<" not implemented\n";
408        return 0;
409        
410    };
411    
412    //--------------------------------------
413    //
414    //
415    //--------------------------------------
416    TrkLevel1::TrkLevel1(){
417            
418    //    cout << "TrkLevel1::TrkLevel1()"<<endl;
419    //    Cluster = new TClonesArray("TrkCluster");
420        Cluster = 0;
421        for(Int_t i=0; i<12 ; i++){
422            good[i] = -1;
423            for(Int_t j=0; j<24 ; j++){
424                cn[j][i]=0;
425                cnn[j][i]=0;
426            };
427        };
428    }
429    //--------------------------------------
430    //
431    //
432    //--------------------------------------
433    void TrkLevel1::Set(){
434        if(!Cluster)Cluster = new TClonesArray("TrkCluster");
435  }  }
436  //--------------------------------------  //--------------------------------------
437  //  //
# Line 109  TrkLevel1::TrkLevel1(){ Line 439  TrkLevel1::TrkLevel1(){
439  //--------------------------------------  //--------------------------------------
440  void TrkLevel1::Dump(){  void TrkLevel1::Dump(){
441            
442          TClonesArray &t  = *Cluster;      cout<<"DSP status: ";
443        for(Int_t i=0; i<12 ; i++)cout<<good[i]<<" ";
444        cout<<endl;
445        cout<<"VA1 mask : "<<endl;
446        for(Int_t i=0; i<12 ; i++){
447            for(Int_t ii=0; ii<24 ; ii++){
448                Int_t mask = cnn[ii][i];
449                if(mask>0)mask=1;
450                cout<<mask<<" ";
451            }
452            cout <<endl;
453        }
454        
455        if(!Cluster)return;
456        TClonesArray &t  = *Cluster;
457        for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();
458            
         for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();  
   
459  }  }
460  //--------------------------------------  //--------------------------------------
461  //  //
# Line 121  void TrkLevel1::Dump(){ Line 464  void TrkLevel1::Dump(){
464  /**  /**
465   * Fills a TrkLevel1 object with values from a struct cTrkLevel1 (to get data from F77 common).   * Fills a TrkLevel1 object with values from a struct cTrkLevel1 (to get data from F77 common).
466   */   */
467  void TrkLevel1::SetFromLevel1Struct(cTrkLevel1 *l1){  void TrkLevel1::SetFromLevel1Struct(cTrkLevel1 *l1, Bool_t full){
   
         //  *** CLUSTER ***  
         TrkCluster* t_cl = new TrkCluster();  
         TClonesArray &t = *Cluster;  
         for(int i=0; i<l1->nclstr1; i++){  
                   
                 t_cl->view     = l1->view[i];  
                 t_cl->ladder   = l1->ladder[i];  
                 t_cl->maxs     = l1->maxs[i];  
                 t_cl->mult     = l1->mult[i];  
                 t_cl->sgnl     = l1->dedx[i];  
                 t_cl->whichtrk = l1->whichtrack[i]-1;  
                   
                 Int_t from = l1->indstart[i] -1;  
                 Int_t to   = l1->totCLlength ;  
                 if(i != l1->nclstr1-1)to   = l1->indstart[i+1] -1 ;  
                 t_cl->CLlength = to - from ;  
                   
                 t_cl->clsignal = new Float_t[t_cl->CLlength];  
                 t_cl->clsigma  = new Float_t[t_cl->CLlength];  
                 t_cl->cladc    = new Int_t[t_cl->CLlength];  
                 t_cl->clbad    = new Bool_t[t_cl->CLlength];  
                 Int_t index = 0;  
                 for(Int_t is = from; is < to; is++ ){  
                         t_cl->clsignal[index] = (Float_t) l1->clsignal[is];  
                         t_cl->clsigma[index]  = (Float_t) l1->clsigma[is];  
                         t_cl->cladc[index]    = (Int_t)   l1->cladc[is];  
                         t_cl->clbad[index]    = (Bool_t)  l1->clbad[is];  
                         index++;  
                 };  
                                   
                 new(t[i]) TrkCluster(*t_cl);  
         };  
           
         delete t_cl;  
   
         //  general variables  
468    
469          good1 = l1->good1;      //  ---------------
470          for(Int_t i=0; i<12 ; i++){      //  *** CLUSTER ***
471  //              crc[i] = l1->crc[i];      //  ---------------
472                  for(Int_t j=0; j<24 ; j++){      TrkCluster* t_cl = new TrkCluster();
473                          cnev[j][i]     = l1->cnev[j][i];      if(!Cluster)Cluster = new TClonesArray("TrkCluster");
474                          cnnev[j][i] = l1->cnnev[j][i];      TClonesArray &t = *Cluster;
475                  };      for(int i=0; i<l1->nclstr1; i++){
476                  fshower[i] = l1->fshower[i];  
477            t_cl->Clear();
478    //      if( full || (!full && l1->whichtrack[i]) ){
479            
480            t_cl->view     = l1->view[i];
481            t_cl->maxs     = l1->maxs[i];
482    
483            if( full || (!full && l1->whichtrack[i]) ){
484                t_cl->indmax   = l1->indmax[i] - l1->indstart[i];      
485                Int_t from = l1->indstart[i] -1;
486                Int_t to   = l1->totCLlength ;
487                if(i != l1->nclstr1-1)to   = l1->indstart[i+1] -1 ;
488                t_cl->CLlength = to - from ;
489                
490                t_cl->clsignal = new Float_t[t_cl->CLlength];
491                t_cl->clsigma  = new Float_t[t_cl->CLlength];
492                t_cl->cladc    = new Int_t[t_cl->CLlength];
493                t_cl->clbad    = new Bool_t[t_cl->CLlength];
494                Int_t index = 0;
495                for(Int_t is = from; is < to; is++ ){
496                    t_cl->clsignal[index] = (Float_t) l1->clsignal[is];
497                    t_cl->clsigma[index]  = (Float_t) l1->clsigma[is];
498                    t_cl->cladc[index]    = (Int_t)   l1->cladc[is];
499                    t_cl->clbad[index]    = (Bool_t)  l1->clbad[is];
500                    index++;
501                };
502            }
503            new(t[i]) TrkCluster(*t_cl); // <<< store cluster
504        };
505        
506        delete t_cl;
507        
508        //  -------------------------
509        //  ****general variables****
510        //  -------------------------    
511        for(Int_t i=0; i<12 ; i++){
512            good[i] = l1->good[i];
513            for(Int_t j=0; j<24 ; j++){
514                cn[j][i]     = l1->cnev[j][i];
515    //          cnrms[j][i]  = l1->cnrmsev[j][i];
516                cnn[j][i]    = l1->cnnev[j][i];
517          };          };
518                };
519        
520  }  }
521  /**  /**
522   * Fills a struct cTrkLevel1 with values from a TrkLevel1 object (to put data into a F77 common).   * Fills a struct cTrkLevel1 with values from a TrkLevel1 object (to put data into a F77 common).
523   */   */
524    
525  void TrkLevel1::GetLevel1Struct(cTrkLevel1 *l1) const {  cTrkLevel1* TrkLevel1::GetLevel1Struct() {
     
         // ********* completare ********* //  
         // ********* completare ********* //  
         // ********* completare ********* //  
         // ********* completare ********* //  
         // ********* completare ********* //  
         // ********* completare ********* //  
 //  general variables  
         l1->good1 = good1;  
         for(Int_t i=0; i<12 ; i++){  
 //              l1->crc[i] = crc[i];  
                 for(Int_t j=0; j<24 ; j++){  
                         l1->cnev[j][i]     = cnev[j][i];  
                         l1->cnnev[j][i] = cnnev[j][i];  
                 };  
                 l1->fshower[i] = fshower[i];  
         };  
526                    
527        cTrkLevel1 *l1=0;
528        //
529        for(Int_t i=0; i<12 ; i++){
530            l1->good[i] = good[i];
531            for(Int_t j=0; j<24 ; j++){
532                l1->cnev[j][i]    = cn[j][i];
533    //          l1->cnrmsev[j][i] = cnrms[j][i];
534                l1->cnnev[j][i]   = cnn[j][i];
535            };
536        };
537        
538  //  *** CLUSTERS ***  //  *** CLUSTERS ***
539      l1->nclstr1 =  Cluster->GetEntries();      if(Cluster){
540            l1->nclstr1 =  Cluster->GetEntries();
541          for(Int_t i=0;i<l1->nclstr1;i++){          for(Int_t i=0;i<l1->nclstr1;i++){
   
                 l1->view[i]     = ((TrkCluster *)Cluster->At(i))->view;  
                 l1->ladder[i]   = ((TrkCluster *)Cluster->At(i))->ladder;  
                 l1->maxs[i]     = ((TrkCluster *)Cluster->At(i))->maxs;  
                 l1->mult[i]     = ((TrkCluster *)Cluster->At(i))->mult;  
                 l1->dedx[i]     = ((TrkCluster *)Cluster->At(i))->sgnl;  
                   
         }  
542                    
543          // ********* completare ********* //              l1->view[i]     = ((TrkCluster *)Cluster->At(i))->view;
544                l1->maxs[i]     = ((TrkCluster *)Cluster->At(i))->maxs;
545                // COMPLETARE //
546                // COMPLETARE //
547                // COMPLETARE //
548                // COMPLETARE //
549                // COMPLETARE //
550                // COMPLETARE //
551            
552            }
553            // COMPLETARE //
554            // COMPLETARE //
555            // COMPLETARE //
556            // COMPLETARE //
557            // COMPLETARE //
558            // COMPLETARE //
559        }
560        return l1;
561  }  }
562  //--------------------------------------  //--------------------------------------
563  //  //
564  //  //
565  //--------------------------------------  //--------------------------------------
566  void TrkLevel1::Clear(){  void TrkLevel1::Clear(){
567                
568          good1    = -1;      for(Int_t i=0; i<12 ; i++){
569          for(Int_t i=0; i<12 ; i++){          good[i] = -1;
570  //              crc[i] = -1;          for(Int_t j=0; j<24 ; j++){
571                  for(Int_t j=0; j<24 ; j++){              cn[j][i]    = 0;
572                          cnev[j][i]     = 0;              cnn[j][i]   = 0;
                         cnnev[j][i] = 0;  
                 };  
                 fshower[i] = 0;  
573          };          };
574  //      totCLlength = 0;      };
575          Cluster->Clear();  //    if(Cluster)Cluster->Clear("C");
576        if(Cluster)Cluster->Delete();
577        
578    }
579    //--------------------------------------
580    //
581    //
582    //--------------------------------------
583    void TrkLevel1::Delete(){
584        
585    //    Clear();
586        if(Cluster)Cluster->Delete();
587        if(Cluster)delete Cluster;
588        
589  }  }
590  //--------------------------------------  //--------------------------------------
591  //  //
# Line 234  void TrkLevel1::Clear(){ Line 593  void TrkLevel1::Clear(){
593  //--------------------------------------  //--------------------------------------
594  TrkCluster *TrkLevel1::GetCluster(int is){  TrkCluster *TrkLevel1::GetCluster(int is){
595    
596          if(is >= this->nclstr()){      if(!Cluster)return 0;
597                  cout << "** TrkLevel1::GetCluster(int) ** Cluster "<< is << " does not exits! " << endl;      if(is >= nclstr()){
598                  cout << "( Stored clusters nclstr() = "<< this->nclstr()<<" )" << endl;          cout << "** TrkLevel1::GetCluster(int) ** Cluster "<< is << " does not exits! " << endl;
599                  return 0;          cout << "( Stored clusters nclstr() = "<< this->nclstr()<<" )" << endl;
600            return 0;
601        }
602        
603        TClonesArray &t = *(Cluster);
604        TrkCluster *cluster = (TrkCluster*)t[is];
605        return cluster;
606    }
607    //--------------------------------------
608    //
609    //
610    //--------------------------------------
611    /**
612     * Load Position-Finding-Algorythm parameters (call the F77 routine).
613     *
614     */
615    int TrkLevel1::LoadPfaParam(TString path){
616            
617        if( strcmp(path_.path,path.Data()) ){
618            cout <<"Loading p.f.a. param::eters\n";
619            strcpy(path_.path,path.Data());
620            path_.pathlen = path.Length();
621            path_.error   = 0;
622            return readetaparam_();
623        }  
624        return 0;
625    }
626    
627    /**
628     *
629     *
630     */
631    float* TrkLevel1::GetPfaCoord(TString pfa, int nview, int nladder, int nang){
632      
633        int nbins = GetPfaNbinsETA();
634        if(!nbins)return 0;
635    
636        float *fcorr = new float [nbins];
637    
638        if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
639            for(int ib=0; ib<nbins; ib++){
640                fcorr[ib] = pfa_.feta2[nang][nladder][nview][ib];
641                cout << pfa_.eta2[nang][ib] << " - " <<  pfa_.feta2[nang][nladder][nview][ib]<<endl;;
642          }          }
643          TClonesArray &t = *(Cluster);      }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
644          TrkCluster *cluster = (TrkCluster*)t[is];          for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta3[nang][nladder][nview][ib];
645          return cluster;      }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
646  }          for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta4[nang][nladder][nview][ib];
647        }else{
648  // //--------------------------------------          cout << pfa<<" pfa parameters not implemented "<<endl;
649  // //          return 0;
650  // //      }    
651  // //--------------------------------------  
652  // TrkTrackRef::TrkTrackRef(){      return fcorr;
653  //      for(int ip=0;ip<6;ip++){  
654  //              clx[ip]  = 0;  };
655  //              cly[ip]  = 0;  
656  //      };  float* TrkLevel1::GetPfaAbs(TString pfa, int nang){
657  // };    
658  // //--------------------------------------      int nbins = GetPfaNbinsETA();
659  // //      if(!nbins)return 0;
660  // //  
661  // //--------------------------------------      float *fcorr = new float [nbins];
662  // TrkTrackRef::TrkTrackRef(const TrkTrackRef& t){  
663  //      for(int ip=0;ip<6;ip++){      if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
664  //              clx[ip]  = t.clx[ip];          for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta2[nang][ib];
665  //              cly[ip]  = t.cly[ip];      }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
666  //      };          for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta3[nang][ib];
667  // };      }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
668  // //--------------------------------------          for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta4[nang][ib];
669  // //      }else{
670  // //          cout << pfa<<" pfa parameters not implemented "<<endl;
671  // //--------------------------------------          return 0;
672  // void TrkTrackRef::Clear(){      }    
673  //      for(int ip=0;ip<6;ip++){  
674  //              clx[ip]  = 0;      return fcorr;
675  //              cly[ip]  = 0;  
676  //      };  
677  // };  };
678  // //--------------------------------------  
679  // //  
 // //  
 // //--------------------------------------  
 // TrkLevel2Ref::TrkLevel2Ref(){  
 //      Track    = new TClonesArray("TrkTrackRef");  
 //      SingletX = new TClonesArray("TRef");  
 //      SingletY = new TClonesArray("TRef");  
 // };  
 // //--------------------------------------  
 // //  
 // //  
 // //--------------------------------------  
 // void TrkLevel2Ref::SetFromLevel2Struct(cTrkLevel2 *l2){  
 //        
 //      TrkTrackRef*   t_track   = new TrkTrackRef();  
 //      TRef t_singlet = 0;  
 //        
 //      TClonesArray &t = *Track;  
 //      for(int i=0; i<l2->ntrk; i++){  
 //              for(int ip=0;ip<6;ip++){  
 //                      t_track->clx[ip]  = 0;//<<<puntatore al cluster  
 //                      t_track->cly[ip]  = 0;//<<<puntatore al cluster  
 //              };  
 //              new(t[i]) TrkTrackRef(*t_track);  
 //              t_track->Clear();  
 //      };  
 // //  *** SINGLETS ***  
 //      TClonesArray &sx = *SingletX;  
 //      for(int i=0; i<l2->nclsx; i++){  
 //              t_singlet = 0;//<<<puntatore al cluster  
 //              new(sx[i]) TRef(t_singlet);  
 //      }  
 //      TClonesArray &sy = *SingletY;  
 //      for(int i=0; i<l2->nclsy; i++){  
 //              t_singlet = 0;//<<<puntatore al cluster  
 //              new(sy[i]) TRef(t_singlet);  
 //      };  
 //        
 //      delete t_track;  
 // }  
 // //--------------------------------------  
 // //  
 // //  
 // //--------------------------------------  
 // void TrkLevel2Ref::Clear(){  
 //      Track->Clear();  
 //      SingletX->Clear();  
 //      SingletY->Clear();  
 // }  
680    
681  ClassImp(TrkLevel1);  ClassImp(TrkLevel1);
682  ClassImp(TrkCluster);  ClassImp(TrkCluster);
 // ClassImp(TrkTrackRef);  
 // ClassImp(TrkLevel2Ref);  

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.23