/[PAMELA software]/eventviewer/flight/src/FEVdetector.cpp
ViewVC logotype

Diff of /eventviewer/flight/src/FEVdetector.cpp

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

revision 1.10 by mocchiut, Mon Feb 26 12:51:09 2007 UTC revision 1.36 by mocchiut, Fri Apr 13 08:07:30 2012 UTC
# Line 46  char* operator+( std::streampos&, char* Line 46  char* operator+( std::streampos&, char*
46  #include <TEllipse.h>  #include <TEllipse.h>
47  #include <TArrow.h>  #include <TArrow.h>
48  #include <TStyle.h>  #include <TStyle.h>
49    #include <TStreamerElement.h>
50    #include <TRealData.h>
51  //  //
52  #include <PamelaRun.h>  #include <PamelaRun.h>
53  #include <physics/calorimeter/CalorimeterEvent.h>  #include <physics/calorimeter/CalorimeterEvent.h>
# Line 67  char* operator+( std::streampos&, char* Line 69  char* operator+( std::streampos&, char*
69  #include <FEVdetector.h>  #include <FEVdetector.h>
70  #include <FEventViewer.h>  #include <FEventViewer.h>
71  #include <feventvstruct.h>  #include <feventvstruct.h>
72    #include <color.h>
73  //  //
74  extern Bool_t existfile(TString);  extern Bool_t existfile(TString);
75    extern Bool_t NODB;
76  //  //
77    
78  using namespace std;  using namespace std;
# Line 80  FEVdetector::FEVdetector(TString filenam Line 84  FEVdetector::FEVdetector(TString filenam
84    thefigure = &figure;    thefigure = &figure;
85    checkctrlword();    checkctrlword();
86    var.selex = false;    var.selex = false;
87      var.showall = false;
88    
89      var.showsi = false;
90      var.shownd = false;
91      var.shows4 = false;
92      var.showorb = false;
93      var.showtof = false;
94      var.showtrg = false;
95      var.showtrk = false;
96      var.showcal = false;
97      var.showrun = false;
98      var.showac = false;
99    }
100    
101    void FEVdetector::Reset(){
102      L2 = NULL;
103  }  }
104    
105  void FEVdetector::checkctrlword(){  void FEVdetector::checkctrlword(){
# Line 88  void FEVdetector::checkctrlword(){ Line 108  void FEVdetector::checkctrlword(){
108    var.AC = 0;    var.AC = 0;
109    var.RUN = 1;    var.RUN = 1;
110    var.TRK = 0;    var.TRK = 0;
111      var.ORB = 1;
112      var.TRG = 1;
113    var.CALO = 0;    var.CALO = 0;
114      var.CALOT = 0;
115    var.S4 = 0;    var.S4 = 0;
116    var.ND = 0;    var.ND = 0;
117    var.INFOS = 0;    var.INFOS = 0;
118    var.VINFOS = 0;    var.VINFOS = 0;
119    var.PALETTE = 0;    var.PALETTE = 0;
120      var.PATTRIG = 1;
121    if ( *ctrlword & (1<<0) ) {    if ( *ctrlword & (1<<0) ) {
122      var.PALETTE = 1;      var.PALETTE = 1;
123    };    };
# Line 121  void FEVdetector::checkctrlword(){ Line 145  void FEVdetector::checkctrlword(){
145    if ( *ctrlword & (1<<8) ) {    if ( *ctrlword & (1<<8) ) {
146      var.TOF = 1;      var.TOF = 1;
147    };    };
148      if ( *ctrlword & (1<<9) ) {
149        var.PATTRIG = 1;
150      };
151  }  }
152    
153  void FEVdetector::SetDDEC(TString de){  void FEVdetector::SetDDEC(TString de){
# Line 128  void FEVdetector::SetDDEC(TString de){ Line 155  void FEVdetector::SetDDEC(TString de){
155  };  };
156    
157  void FEVdetector::GetWindow(){  void FEVdetector::GetWindow(){
158    otr->GetEntry(maxevent);    //
159      if ( level.file == 2 ){
160        //    printf("0qui\n");
161        L2->GetEntry(minevent);
162      } else {
163        otr->GetEntry(minevent);
164      }
165    if ( level.file < 2 ){    if ( level.file < 2 ){
166      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
167      lastevno = (int)ph->Counter;      firstevno = (int)ph->Counter;
168    } else {    } else {
169      lastevno = L2->GetOrbitalInfo()->pkt_num; // to be changed as soon as we will have pkt_counter in the level2 file!      if ( var.ORB ){
170          firstevno = L2->GetOrbitalInfo()->pkt_num;
171        } else {
172          firstevno = 0;
173        };
174    };    };
175    otr->GetEntry(minevent);    //
176      if ( level.file == 2 ){
177        //    printf("1qui\n");
178        L2->GetEntry(maxevent);
179      } else {
180        otr->GetEntry(maxevent);
181      }
182      //
183    if ( level.file < 2 ){    if ( level.file < 2 ){
184      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
185      firstevno = (int)ph->Counter;      lastevno = (int)ph->Counter;
186    } else {    } else {
187      firstevno = L2->GetOrbitalInfo()->pkt_num; // to be changed as soon as we will have pkt_counter in the level2 file!      if ( var.ORB ){
188          lastevno = L2->GetOrbitalInfo()->pkt_num;
189        } else {
190          lastevno = 0;
191        };
192    };    };
193      //
194  }  }
195    
196  void FEVdetector::ClearVariables(){  void FEVdetector::ClearVariables(){
# Line 164  void FEVdetector::ClearVariables(){ Line 213  void FEVdetector::ClearVariables(){
213  }  }
214    
215  void FEVdetector::GetEntry(Int_t i){  void FEVdetector::GetEntry(Int_t i){
216    thisentry = i;    thisentry = i;  
217    otr->GetEntry(i);    if ( level.file == 2 ){
218    //  PrintData(otr,-1LL,44);      //    L2->Clear();
219        //    printf("qui\n");
220        L2->GetEntry(i);
221        if ( var.showall ){
222          ShowInfo("RunInfo");
223          ShowInfo("SoftInfo");
224          ShowInfo("OrbitalInfo");
225          ShowInfo("TrigLevel2");
226          ShowInfo("ToFLevel2");
227          ShowInfo("TrkLevel2");
228          ShowInfo("AcLevel2");
229          ShowInfo("CaloLevel2");
230          ShowInfo("CaloLevel1");
231          ShowInfo("S4Level2");
232          ShowInfo("NDLevel2");
233        } else {
234          if ( var.showrun ) ShowInfo("RunInfo");
235          if ( var.showsi ) ShowInfo("SoftInfo");
236          if ( var.showorb ) ShowInfo("OrbitalInfo");
237          if ( var.showtrg ) ShowInfo("TrigLevel2");
238          if ( var.showtof ) ShowInfo("ToFLevel2");
239          if ( var.showtrk ) ShowInfo("TrkLevel2");
240          if ( var.showac ) ShowInfo("AcLevel2");
241          if ( var.showcal ) ShowInfo("CaloLevel2");
242          if ( var.showcal ) ShowInfo("CaloLevel1");
243          if ( var.shows4 ) ShowInfo("S4Level2");
244          if ( var.shownd ) ShowInfo("NDLevel2");
245        };
246      } else {
247        otr->GetEntry(i);
248        if ( var.showall ){
249          ShowInfo("Pscu");
250          ShowInfo("Trigger");
251          ShowInfo("Tof");
252          ShowInfo("Tracker");
253          ShowInfo("Anticounter");
254          ShowInfo("Calorimeter");
255          ShowInfo("S4");
256          ShowInfo("Neutron");
257        } else {
258          if ( var.showorb ) ShowInfo("Pscu");
259          if ( var.showtrg ) ShowInfo("Trigger");
260          if ( var.showtof ) ShowInfo("Tof");
261          if ( var.showtrk ) ShowInfo("Tracker");
262          if ( var.showac ) ShowInfo("Anticounter");
263          if ( var.showcal ) ShowInfo("Calorimeter");
264          if ( var.shows4 ) ShowInfo("S4");
265          if ( var.shownd ) ShowInfo("Neutron");
266        };
267      };
268  }  }
269    
270  void FEVdetector::SetEntry(Int_t i){  void FEVdetector::SetEntry(Int_t i){
# Line 287  void FEVdetector::ColorTRKMIP(Float_t mi Line 385  void FEVdetector::ColorTRKMIP(Float_t mi
385    };    };
386  }  }
387    
388  void FEVdetector::PrintLeaves(TTree *otr, Int_t i, TBranchElement *tb, Int_t lenmax){  void FEVdetector::ShowInfo(TString detector){
389    // -- Prints values of leaves.    //
390      TBranch *b1 = 0;
391    //  tb->ValidateAddress();    //  TBranch *b3 = 0;
392    printf("son qua \n");    TObjArray *branch_array = 0;
393      //  TObjArray *leaf_array = 0;                
394      //
395      if ( !strcmp(detector.Data(),"RunInfo") || !strcmp(detector.Data(),"SoftInfo") ){
396        if ( L2->GetRunTree() ) b1 = L2->GetRunTree()->FindBranch(detector.Data());
397      } else {
398        b1 = otr->FindBranch(detector.Data());
399      };
400      //
401      if ( !b1 ) return;
402      //
403      Int_t dlen = 10;
404      //
405      char o[200000];
406      char zz[200000];
407      char col[13];
408      char col2[13];
409      //
410      setcolor(col,RESET, GREEN, WHITE);
411      sprintf(o,"%s======> EVENT:%i\n",col, thisentry);
412      sprintf(zz,"======> EVENT:%i\n", thisentry);
413      //
414      setcolor(col,RESET, RED, WHITE);
415      sprintf(o,"%s%sBranch %s\n",o,col,b1->GetName());
416      sprintf(zz,"%sBranch %s\n",zz,b1->GetName());
417      setcolor(col,RESET, BLACK, WHITE);
418      sprintf(o,"%s%s",o,col);
419      //
420      branch_array = b1->GetListOfBranches();
421      //
422      Int_t j = 0;
423      //
424      for(Int_t l=0;l<(branch_array->GetLast()+1);l++){
425        //
426        TBranchElement *tb = (TBranchElement*)branch_array->At(l);
427        Int_t type = tb->GetType();
428        Int_t atype = tb->GetStreamerType() - 20;
429        Int_t len = (tb->GetInfo()->GetLengths())[tb->GetID()];
430        Int_t length = min(len,dlen);
431        //
432        //        printf("Branches : type is %i type is %i tb getname %s  slen %i slength %i\n",atype,type,tb->GetName(),len,length);
433        switch (type){
434        case 0:
435          //      
436          // IS A VARIABLE
437          //
438          //
439          // NAME
440          //
441          setcolor(col,RESET, BLUE, WHITE);
442          setcolor(col2,RESET, BLACK, WHITE);
443          sprintf(o,"%s%s %-15s%s =",o,col,((TBranch*)branch_array->At(l))->GetName(),col2);
444          sprintf(zz,"%s %-15s =",zz,((TBranch*)branch_array->At(l))->GetName());
445          //
446          j = 0;
447          //
448          // VALUES
449          //
450          //
451          // Integer
452          //
453          if ( atype == 3 || atype == -17 ){
454            while ( j < length ){
455              if ( j < length -1 ){
456                sprintf(o,"%s %i ,",o,(Int_t)tb->GetValue(j,0));
457                sprintf(zz,"%s %i ,",zz,(Int_t)tb->GetValue(j,0));
458              } else {
459                sprintf(o,"%s %i",o,(Int_t)tb->GetValue(j,0));
460                sprintf(zz,"%s %i",zz,(Int_t)tb->GetValue(j,0));
461              };
462              j++;
463            };
464          };
465          //
466          // Unsigned integer
467          //
468          if ( atype == -7 || atype == 13 || atype == -9 || atype == -8 || atype == 12 ){
469            while ( j < length ){
470              if ( j < length -1 ){
471                sprintf(o,"%s %u ,",o,(UInt_t)tb->GetValue(j,0));
472                sprintf(zz,"%s %u ,",zz,(UInt_t)tb->GetValue(j,0));
473              } else {
474                sprintf(o,"%s %u",o,(UInt_t)tb->GetValue(j,0));
475                sprintf(zz,"%s %u",zz,(UInt_t)tb->GetValue(j,0));
476              };
477              j++;
478            };
479          };
480          //
481          // Float
482          //
483          if ( atype == -15 || atype == 5 ){
484            while ( j < length ){
485              if ( j < length -1 ){
486                sprintf(o,"%s %f ,",o,tb->GetValue(j,0));
487                sprintf(zz,"%s %f ,",zz,tb->GetValue(j,0));
488              } else {
489                sprintf(o,"%s %f",o,tb->GetValue(j,0));
490                sprintf(zz,"%s %f",zz,tb->GetValue(j,0));
491              };
492              j++;
493            };
494          };
495          //
496          // Strings
497          //
498          if ( atype == 45 ){
499            //      TObjArray *cl = (TObjArray*)(tb->GetInfo()->GetOffsets())[tb->GetID()];//tb->GetValuePointer();
500            //      TString *stringa = (TString*)(*cl)[0];  
501            //      TBranchElement *utb = (TBranchElement*)tb->GetBranchCount();
502            //      TString** stringa = (TString*)(&tb->GetValuePointer());
503            //TStreamerElement *tste = (TStreamerElement*)tb->GetInfo()->GetCurrentElement();
504    
505            //      char *ladd;
506            //      ladd = tb->GetValuePointer()
507            //      TString *stringa = (TString*)((tste->GetOffset()));
508            //      TString& mstr = *stringa;
509            //      printf(" la mia stringa %s \n",mstr.Data());
510            //      printf(" offset %i \n",(Int_t)utb->GetValue(0,0));
511            //      int pointer = (tb->GetInfo()->GetOffsets())[tb->GetID()];
512            //      TString *stringa = (TString*)(tb->GetInfo()->GetOffsets())[tb->GetID()];
513    //      TString *stringa = (TString*)tb->GetAddress();
514    //      printf(" address 0x%X \n",tb->GetAddress());
515    //      printf(" pointer 0x%X \n",tb->GetValuePointer());
516    //      printf(" object  0x%X \n",tb->GetObject());
517    //      printf("stringa %s lung %i\n",stringa.Data(),stringa.Length());
518            //      TLeaf *striglia = tb->FindLeaf(tb->GetName());
519    //      if ( striglia ){
520    //        char *pointer = (char *)striglia->GetValuePointer();
521    //        TString *pr= (TString*)pointer;
522    //        printf("ciao %s \n",pr->Data());
523    //      };
524            sprintf(o,"%s TString - not implemented yet -",o);
525            sprintf(zz,"%s TString - not implemented yet -",zz);
526          };
527          //
528          // TArray
529          //
530          if ( atype == 42 ){
531            //
532    //      TObjArray *cl = (TObjArray*)tb->GetObject();
533    //      //
534    //      TClass *myc = cl->IsA();
535    //      //
536    //      printf("qui \n");
537    //      //
538    //      // determine offset to fetch data
539    //      //
540    //      int thisoffset = 0;
541    //      TRealData *rd = myc->GetRealData(tb->GetName());
542    //      if ( rd ){
543    //        thisoffset = rd->GetThisOffset();
544    //      };
545    //      Int_t niente = 0;
546    //      TStreamerElement *tste = tb->GetInfo()->GetStreamerElement(rd->GetName(),niente);
547    //      printf(" typename %s \n",tste->GetTypeName());
548    //      //
549    //      // TArrayI
550    //      //
551    //      if ( !strcmp(tste->GetTypeName(),"TArrayI") ){
552    //        //
553    //        printf("qua \n");
554    //        char *pointer = (char*)cl->At(0);
555    //        //      char *pu = thisoffset + pointer;
556    //        int pu = (int)tste->GetTObjectOffset();
557    //        TArrayI arr = (TArrayI)*pu;
558    //        //      TArrayI arr = (TArrayI)(thisoffset);
559    //        //TArrayI *arr = (TArrayI*)pu;
560    //        //TArraI arr = (TArrayI)
561    //        Int_t jj=0;
562    //        j=0;
563    //        printf("quii \n");
564    //        Int_t arlen = min(arr.GetSize(),dlen);
565    //        //
566    //        printf("que \n");
567    //        setcolor(col,RESET, BLUE, WHITE);
568    //        setcolor(col2,RESET, BLACK, WHITE);
569    //        sprintf(o,"%s%s %s[%i]%s = ",o,col,tb->GetName(),arr.GetSize(),col2);
570    //        //
571    //        //      while ( j < tb->GetNdata() ){
572    //        //
573    //        printf("quo \n");
574    //        //        pointer = (char*)cl->UncheckedAt(j);
575    //        //        pu = pointer + thisoffset;
576    //        //        arr = (TArrayI*)(thisoffset);
577    //        //
578    //        while ( jj < arlen ){
579    //          if ( jj < arlen-1 ){
580    //            sprintf(o,"%s %i ,",o,arr.At(jj));
581    //          } else {
582    //            sprintf(o,"%s %i",o,arr.At(jj));
583    //          };
584    //          jj++;
585    //        };
586    //          //      if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
587    //          //      j++;
588    //          //    };
589    //      };
590    //      //
591    //      // TArrayF
592    //      //
593    //      if ( !strcmp(tste->GetTypeName(),"TArrayF") ){
594    //        //
595    //        char *pointer = (char*)cl->UncheckedAt(0);
596    //        char *pu = pointer + thisoffset;
597    //        TArrayF *arr = (TArrayF*)(pu);
598    //        Int_t jj=0;
599    //        Int_t arlen = min(arr->GetSize(),dlen);
600    //        //
601    //        setcolor(col,RESET, BLUE, WHITE);
602    //        setcolor(col2,RESET, BLACK, WHITE);
603    //        sprintf(o,"%s%s %s[%i]%s = ",o,col,tb->GetName(),arr->GetSize(),col2);
604    //        //
605    //        while ( j < tb->GetNdata() ){
606    //          //
607    //          pointer = (char*)cl->UncheckedAt(j);
608    //          pu = pointer + thisoffset;
609    //          arr = (TArrayF*)(pu);
610    //          //
611    //          while ( jj < arlen ){
612    //            if ( jj < arlen-1 ){
613    //              sprintf(o,"%s %f ,",o,arr->At(jj));
614    //            } else {
615    //              sprintf(o,"%s %f",o,arr->At(jj));
616    //            };
617    //            jj++;
618    //          };
619    //          if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
620    //          j++;
621    //        };
622    //      };
623    //      sprintf(o,"%s\n",o);
624            //      
625            sprintf(o,"%s TArray - not implemented yet -",o);
626            sprintf(zz,"%s TArray - not implemented yet -",zz);
627            //
628          };
629          //
630          sprintf(o,"%s\n",o);
631          sprintf(zz,"%s\n",zz);
632          break;
633        case 3:
634          //
635          // IS A TCLONESARRAY
636          //
637          setcolor(col,RESET, BLUE, WHITE);
638          setcolor(col2,RESET, BLACK, WHITE);
639          sprintf(o,"%s%s %-15s%s = %d\n",o,col,tb->GetName(), col2, tb->GetNdata());
640          sprintf(zz,"%s %-15s = %d\n",zz,tb->GetName(), tb->GetNdata());
641    
642    //  if (otr->GetMakeClass()) {        //
643      if (!tb->GetAddress()) {        if ( tb->GetNdata() ){
644        printf("esco \n");          //
645        return;          TClonesArray *cl = (TClonesArray*)tb->GetObject();
646      }          //
647      if (tb->GetType() == 3 || tb->GetType() == 4) {          TClass *myc = cl->GetClass();
648        // TClonesArray or STL container top-level branch.          //
649        printf("3 o 4 %-15s = %d\n", tb->GetName(), tb->GetNdata());          TList *lme = myc->GetListOfDataMembers();
650        return;          TIter next(lme);
651      } else if (tb->GetType() == 31 || tb->GetType() == 41) {          TBranchElement *tb2 = 0;
652        printf(" 31 o 41 \n");          //
653        // TClonesArray or STL container sub-branch.          while ( (tb2 = (TBranchElement*)next()) ){
654        Int_t n = TMath::Min(10, tb->GetNdata());            //
655        Int_t atype = tb->GetStreamerType() + 20;            const char *name = tb2->GetName();
656        if (tb->GetStreamerType() == 1) {            TBranch *foglia = tb->FindBranch(name);
657          // TVirtualStreamerInfo::kOffsetL + TVirtualStreamerInfo::kChar is            if ( foglia ){
658          // printed as a string and could print weird characters.              //
659          // So we print an unsigned char instead (not perfect, but better).              TBranchElement *stb = (TBranchElement*)tb->FindBranch(name);
660          atype = 20 + 11 ;              Int_t stype = stb->GetType();
661        }              Int_t satype = stb->GetStreamerType() - 20;
662        if (atype > 54) {              Int_t slen = (stb->GetInfo()->GetLengths())[stb->GetID()];
663          // FIXME: More logic required here (like in ReadLeaves)              Int_t slength = min(slen,dlen);
664          printf(">54 %-15s = %d\n", tb->GetName(), tb->GetNdata());              //      printf("SubBranches : atype is %i type is %i tb getname %s  slen %i slength %i\n",satype,stype,stb->GetName(),slen,slength);
665          return;              switch (stype){
666        }              case 31:
667        if (tb->GetStreamerType() > 20) {                //      
668          atype -= 20;                // IS A VARIABLE
669          TObjArray *prova= otr->GetListOfLeaves();                //
670          //      TObjArray* leaf2 = (TObjArray*) prova->UncheckedAt(i);                //
671          //TLeaf* leaf = (TLeaf*)(otr->GetLeaf(tb->GetName()));                // NAME
672          //      TLeafElement* leaf = (TLeafElement*)((TLeaf*)(otr->GetListOfLeaves()->UncheckedAt(i))->GetBranch()->UncheckedAt(0));                //
673          TLeafElement* leaf = (TLeafElement*)(prova->UncheckedAt(0));                j = 0;
674          n = n * leaf->GetLenStatic();                //
675        }                // VALUES
676        if (tb->GetInfo()) {                //
677          //      n = 16;                if ( satype == 41 || satype == 44){
678          tb->GetInfo()->PrintValue(tb->GetName(), tb->GetAddress(), atype, n, lenmax);                  //
679          //tb->GetObject()->GetInfo()->PrintValue(tb->GetName(), tb->GetObject(), atype, n, lenmax);                  // skip TRef
680        }                  //
681        return;                  break;
682      } else if (tb->GetType() <= 2) {                };
683        printf(" <=2 \n");                //
684        // Branch in split mode.                // Integer
685        // FIXME: This should probably be < 60 instead.                //
686        if ((tb->GetStreamerType() > 40) && (tb->GetStreamerType() < 55)) {                if ( satype == -17 || satype == -9 ){
687          Int_t atype = tb->GetStreamerType() - 20;                  //
688          TBranchElement* counterElement = (TBranchElement*) tb->GetBranchCount();                  setcolor(col,RESET, BLUE, WHITE);
689          Int_t n = (Int_t) counterElement->GetValue(0, 0);                  setcolor(col2,RESET, BLACK, WHITE);
690          if (tb->GetInfo()) {                  sprintf(o,"%s%s %-15s%s = ",o,col,foglia->GetName(),col2);
691            tb->GetInfo()->PrintValue(tb->GetName(), tb->GetAddress(), atype, n, lenmax);                  sprintf(zz,"%s %-15s = ",zz,foglia->GetName());
692          }                  while ( j < cl->GetEntriesFast() ){
693        } else {                    if ( j < cl->GetEntriesFast() -1 ){
694          //      if (tb->GetInfo()) {                      sprintf(o,"%s %i ,",o,(Int_t)stb->GetValue(j,slength));
695          //        tb->GetInfo()->PrintValue(tb->GetName(), tb->GetObject(), tb->GetID(), -1, lenmax);                      sprintf(zz,"%s %i ,",zz,(Int_t)stb->GetValue(j,slength));
696          //             }                    } else {
697          //          }                      sprintf(o,"%s %i",o,(Int_t)stb->GetValue(j,slength));
698          return;                      sprintf(zz,"%s %i",zz,(Int_t)stb->GetValue(j,slength));
699        }                    };
700      } else if (tb->GetType() == 3) {                    j++;
701        printf("3 %-15s = %d\n", tb->GetName(), tb->GetNdata());                  };
702      } else if (tb->GetType() == 31) {                };
703        printf("31 %-15s = %d\n", tb->GetName(), tb->GetNdata());                //
704        //     TClonesArray* clones = (TClonesArray*) tb->GetObject();                // Float
705        //     if (tb->GetInfo()) {                //
706        //       tb->GetInfo()->PrintValueClones(tb->GetName(), clones, tb->GetID(), tb->GetOffset(), lenmax);                if ( satype == -15 ){
707        //       }                  //
708      } else if (tb->GetType() == 41) {                  setcolor(col,RESET, BLUE, WHITE);
709        printf("41 %-15s = %d\n", tb->GetName(), tb->GetNdata());                  setcolor(col2,RESET, BLACK, WHITE);
710        //       TVirtualCollectionProxy::TPushPop helper(((TBranchElement*) this)->GetCollectionProxy(), fObject);                  sprintf(o,"%s%s %-15s%s = ",o,col,foglia->GetName(),col2);
711        //       if (GetInfo()) {                  sprintf(zz,"%s %-15s = ",zz,foglia->GetName());
712        //          GetInfo()->PrintValueSTL(GetName(), ((TBranchElement*) this)->GetCollectionProxy(), fID, fOffset, lenmax);                  while ( j < cl->GetEntriesFast() ){
713        //       }                    if ( j < cl->GetEntriesFast() -1 ){
714      } else {                      sprintf(o,"%s %f ,",o,stb->GetValue(j,slength));
715        printf("else %-15s = %d\n", tb->GetName(), tb->GetNdata());                      sprintf(zz,"%s %f ,",zz,stb->GetValue(j,slength));
716        //       if (GetInfo()) {                    } else {
717        //          GetInfo()->PrintValue(GetName(), fObject, fID, -1, lenmax);                      sprintf(o,"%s %f",o,stb->GetValue(j,slength));
718        //       }                      sprintf(zz,"%s %f",zz,stb->GetValue(j,slength));
719      }                    };
720                      j++;
721                    };
722                  };
723                  //
724                  // Array of float
725                  //
726                  if ( satype == 5 ){
727                    //
728                    setcolor(col,RESET, BLUE, WHITE);
729                    setcolor(col2,RESET, BLACK, WHITE);
730                    sprintf(o,"%s%s %-15s%s = ",o,col,foglia->GetName(),col2);
731                    sprintf(zz,"%s %-15s = ",zz,foglia->GetName());
732                    Bool_t bold = true;
733                    while ( j < tb->GetNdata() ){
734                      if ( bold ){
735                        setcolor(col,RESET, BLACK, WHITE);
736                        sprintf(o,"%s%s",o,col);
737                      } else {
738                        setcolor(col,BOLD, BLACK, WHITE);
739                        sprintf(o,"%s%s",o,col);                
740                      };
741                      Int_t jj = 0;          
742                      while ( jj < slength ){                  
743                        if ( jj < slength-1 ){
744                          sprintf(o,"%s %f ,",o,stb->GetValue(j,jj,true));
745                          sprintf(zz,"%s %f ,",zz,stb->GetValue(j,jj,true));
746                        } else {
747                          sprintf(o,"%s %f",o,stb->GetValue(j,jj,true));
748                          sprintf(zz,"%s %f",zz,stb->GetValue(j,jj,true));
749                        };
750                        jj++;
751                      };
752                      if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
753                      if ( j < tb->GetNdata() -1 ) sprintf(zz,"%s ,",zz);
754                      if ( !bold ){
755                        bold = true;
756                      } else {
757                        bold = false;
758                      };
759                      j++;
760                    };
761                    if ( bold ){
762                      setcolor(col,RESET, BLACK, WHITE);
763                      sprintf(o,"%s%s",o,col);
764                    };
765                  };
766                  //
767                  // Array of integers
768                  //
769                  if ( satype == 3 ){
770                    //
771                    setcolor(col,RESET, BLUE, WHITE);
772                    setcolor(col2,RESET, BLACK, WHITE);
773                    sprintf(o,"%s%s %-15s%s = ",o,col,foglia->GetName(),col2);
774                    sprintf(zz,"%s %-15s = ",zz,foglia->GetName());
775                    while ( j < tb->GetNdata() ){
776                      Int_t jj = 0;
777                      while ( jj < slength ){
778                        if ( jj < slength-1 ){
779                          sprintf(o,"%s %i ,",o,(Int_t)stb->GetValue(j,jj,true));
780                          sprintf(zz,"%s %i ,",zz,(Int_t)stb->GetValue(j,jj,true));
781                        } else {
782                          sprintf(o,"%s %i",o,(Int_t)stb->GetValue(j,jj,true));
783                          sprintf(zz,"%s %i",zz,(Int_t)stb->GetValue(j,jj,true));
784                        };
785                        jj++;
786                      };
787                      if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
788                      if ( j < tb->GetNdata() -1 ) sprintf(zz,"%s ,",zz);
789                      j++;
790                    };
791                  };
792    
793      //  };                //
794    printf("esco qui\n");                // TArray
795                  //
796                  if ( satype == 42 ){
797                    //
798                    // determine offset to fetch data
799                    //
800                    int thisoffset = 0;
801                    TRealData *rd = myc->GetRealData(foglia->GetName());
802                    if ( rd ){
803                      thisoffset = rd->GetThisOffset();
804                    };
805                    Int_t niente = 0;
806                    TStreamerElement *tste = stb->GetInfo()->GetStreamerElement(rd->GetName(),niente);
807                    //
808                    // TArrayI
809                    //
810                    if ( !strcmp(tste->GetTypeName(),"TArrayI") ){
811                      //
812                      char *pointer = (char*)cl->UncheckedAt(0);
813                      char *pu = pointer + thisoffset;
814                      TArrayI *arr = (TArrayI*)(pu);
815                      Int_t jj=0;
816                      Int_t arlen = min(arr->GetSize(),dlen);
817                      //
818                      setcolor(col,RESET, BLUE, WHITE);
819                      setcolor(col2,RESET, BLACK, WHITE);
820                      sprintf(o,"%s%s %s[%i]%s = ",o,col,foglia->GetName(),arr->GetSize(),col2);
821                      sprintf(zz,"%s %s[%i] = ",zz,foglia->GetName(),arr->GetSize());
822                      //
823                      while ( j < tb->GetNdata() ){
824                        //
825                        pointer = (char*)cl->UncheckedAt(j);
826                        pu = pointer + thisoffset;
827                        arr = (TArrayI*)(pu);
828                        //
829                        while ( jj < arlen ){
830                          if ( jj < arlen-1 ){
831                            sprintf(o,"%s %i ,",o,arr->At(jj));
832                            sprintf(zz,"%s %i ,",zz,arr->At(jj));
833                          } else {
834                            sprintf(o,"%s %i",o,arr->At(jj));
835                            sprintf(zz,"%s %i",zz,arr->At(jj));
836                          };
837                          jj++;
838                        };
839                        if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
840                        if ( j < tb->GetNdata() -1 ) sprintf(zz,"%s ,",zz);
841                        j++;
842                      };
843                    };
844                    //
845                    // TArrayF
846                    //
847                    if ( !strcmp(tste->GetTypeName(),"TArrayF") ){
848                      //
849                      char *pointer = (char*)cl->UncheckedAt(0);
850                      char *pu = pointer + thisoffset;
851                      TArrayF *arr = (TArrayF*)(pu);
852                      Int_t jj=0;
853                      Int_t arlen = min(arr->GetSize(),dlen);
854                      //
855                      setcolor(col,RESET, BLUE, WHITE);
856                      setcolor(col2,RESET, BLACK, WHITE);
857                      sprintf(o,"%s%s %s[%i]%s = ",o,col,foglia->GetName(),arr->GetSize(),col2);
858                      sprintf(zz,"%s %s[%i] = ",zz,foglia->GetName(),arr->GetSize());
859                      //
860                      while ( j < tb->GetNdata() ){
861                        //
862                        pointer = (char*)cl->UncheckedAt(j);
863                        pu = pointer + thisoffset;
864                        arr = (TArrayF*)(pu);
865                        //
866                        while ( jj < arlen ){
867                          if ( jj < arlen-1 ){
868                            sprintf(o,"%s %f ,",o,arr->At(jj));
869                            sprintf(zz,"%s %f ,",zz,arr->At(jj));
870                          } else {
871                            sprintf(o,"%s %f",o,arr->At(jj));
872                            sprintf(zz,"%s %f",zz,arr->At(jj));
873                          };
874                          jj++;
875                        };
876                        if ( j < tb->GetNdata() -1 ) sprintf(o,"%s ,",o);
877                        if ( j < tb->GetNdata() -1 ) sprintf(zz,"%s ,",zz);
878                        j++;
879                      };
880                    };
881                  };
882                  sprintf(o,"%s\n",o);
883                  sprintf(zz,"%s\n",zz);
884                  break;        
885                };
886              };
887            };
888          };
889          break;
890        };
891      };  
892      printf("%s\n",o);
893      pamgui->DIALOG(4,zz);
894  };  };
895    
 void FEVdetector::PrintData(TTree *tree, Long64_t entry=-1LL,Int_t lenmax=44){  
   // -- Print values of all active leaves for entry.  
   //  
   // if entry==-1, print current entry (default)  
   // if a leaf is an array, a maximum of lenmax elements is printed.  
   //  
   if (entry != -1) {  
     tree->GetEntry(entry);  
   }  
   //  printf("======> EVENT:%lld\n", thisentry);  
   printf("======> EVENT:%i\n", thisentry);  
   TObjArray* leaves  = tree->GetListOfLeaves(); //  
   Int_t nleaves = leaves->GetEntriesFast();  
   Int_t ltype;  
   for (Int_t i = 0; i < nleaves; i++) {  
     TLeaf* leaf = (TLeaf*) leaves->UncheckedAt(i);  
     TBranch* branch = leaf->GetBranch();  
     //    if (branch->TestBit(kDoNotProcess)) {  
     //      continue;  
     //    }  
     Int_t len = leaf->GetLen();  
     if (len <= 0) {  
       continue;  
     }  
     len = TMath::Min(len, lenmax);  
     if (leaf->IsA() == TLeafElement::Class()) {  
       //      Double_t value = leaf->GetValue(lenmax);  
       //printf(" ioqui %f \n",value);  
       //      ((TBranchElement*)leaf->GetBranch())->PrintValue(i);  
       this->PrintLeaves(otr,i,((TBranchElement*)leaf->GetBranch()), lenmax);  
       //leaf->PrintValue(lenmax);  
       continue;  
     }  
     if (branch->GetListOfBranches()->GetEntriesFast() > 0) {  
       continue;  
     }  
     ltype = 10;  
     if (leaf->IsA() == TLeafF::Class()) {  
       ltype = 5;  
     }  
     if (leaf->IsA() == TLeafD::Class()) {  
       ltype = 5;  
     }  
     if (leaf->IsA() == TLeafC::Class()) {  
       len = 1;  
       ltype = 5;  
     };  
     printf(" %-15s = ", leaf->GetName());  
     for (Int_t l = 0; l < len; l++) {  
       Double_t value = leaf->GetValue(l);  
       printf(" ioqui %f \n",value);  
       //      leaf->PrintValue(l);  
       if (l == (len - 1)) {  
         printf("\n");  
         continue;  
       }  
       printf(", ");  
       if ((l % ltype) == 0) {  
         printf("\n                  ");  
       }  
     }  
   }  
 };  
896    
897  void FEVdetector::GetGeneralInfo(){  void FEVdetector::GetGeneralInfo(){
898    //    //
# Line 449  void FEVdetector::GetGeneralInfo(){ Line 903  void FEVdetector::GetGeneralInfo(){
903      headcold = headc;      headcold = headc;
904      headc = ph->Counter;      headc = ph->Counter;
905      var.headc = (int)ph->Counter;      var.headc = (int)ph->Counter;
906      OBT = ph->OrbitalTime;      OBT = (UInt_t)ph->OrbitalTime;
907      DOBT = OBT - OOBT;      DOBT = OBT - OOBT;
908      OOBT = OBT;      OOBT = OBT;
909      if ( thisentry == minevent || DOBT < 0 || (headc-headcold-1)!=0 ) DOBT = 0;      if ( thisentry == minevent || DOBT < 0 || (headc-headcold-1)!=0 ) DOBT = 0;
# Line 485  void FEVdetector::GetGeneralInfo(){ Line 939  void FEVdetector::GetGeneralInfo(){
939      trcs = (TString)trc.str().c_str();      trcs = (TString)trc.str().c_str();
940    } else {    } else {
941      headcold = headc;      headcold = headc;
942      headc = L2->GetOrbitalInfo()->pkt_num; // to be changed as soon as we will have obt in the level2 file!      if ( var.RUN ){
943      OBT = L2->GetOrbitalInfo()->OBT; // to be changed as soon as we will have obt in the level2 file!        var.idrun = L2->GetRunInfo()->ID;
944      DOBT = OBT - OOBT;        var.idroot = L2->GetRunInfo()->ID_ROOT_L0;
945      OOBT = OBT;        var.EVF = L2->GetRunInfo()->EV_FROM;
946      if ( thisentry == minevent || DOBT < 0 || (headc-headcold-1)!=0 ) DOBT = 0;      };
947      var.etime = OBT;      if ( var.ORB ){
948          headc = L2->GetOrbitalInfo()->pkt_num;
949          OBT = L2->GetOrbitalInfo()->OBT;
950          DOBT = OBT - OOBT;
951          OOBT = OBT;
952          if ( thisentry == minevent || DOBT < 0 || (headc-headcold-1)!=0 ) DOBT = 0;
953          var.etime = OBT;
954        } else {
955          var.etime = 0;
956        };
957      //            //      
958      // who gave the trigger?      // who gave the trigger?
959      //      //
960      calotrig = 0;      Int_t trigconf = 0;
961      if ( L2->GetTrigLevel2()->patterntrig[0] ) calotrig = 1;      if ( var.TRG ){
962      toftrig = 0;        calotrig = 0;
963      if ( L2->GetTrigLevel2()->patterntrig[2] || L2->GetTrigLevel2()->patterntrig[3] || L2->GetTrigLevel2()->patterntrig[4] || L2->GetTrigLevel2()->patterntrig[5] ) toftrig = 1;        if ( L2->GetTrigLevel2()->patterntrig[0] ) calotrig = 1;
964      s4pulser = 0;        toftrig = 0;
965      if ( L2->GetTrigLevel2()->patterntrig[1] & (1<<0) ) s4pulser = 1;        if ( L2->GetTrigLevel2()->patterntrig[2] || L2->GetTrigLevel2()->patterntrig[3] || L2->GetTrigLevel2()->patterntrig[4] || L2->GetTrigLevel2()->patterntrig[5] ) toftrig = 1;
966      //        s4pulser = 0;
967      // TOF and calorimeter when giving a trigger will always set this flag since the time window of the signal is greater than 100 ns.        if ( L2->GetTrigLevel2()->patterntrig[1] & (1<<0) ) s4pulser = 1;
968      // S4 sometimes could not set the flag even if the trigger is given. This is a workaround to fix this "bug":        //
969      //        // TOF and calorimeter when giving a trigger will always set this flag since the time window of the signal is greater than 100 ns.
970      if ( !calotrig && !toftrig ) s4pulser = 1;        // S4 sometimes could not set the flag even if the trigger is given. This is a workaround to fix this "bug":
971      //        //
972      Int_t trigconf = L2->GetTrigLevel2()->trigconf;        if ( !calotrig && !toftrig ) s4pulser = 1;
973          //
974          trigconf = L2->GetTrigLevel2()->trigconf;
975        } else {
976          trigconf = 0;
977        }
978      stringstream trc;      stringstream trc;
979      trc.str("");      trc.str("");
980      if ( trigconf & (1<<0) ) trc << "TOF1";      if ( trigconf & (1<<0) ) trc << "TOF1";
# Line 594  int FEVdetector::SelectEvent(){ Line 1062  int FEVdetector::SelectEvent(){
1062        //        //
1063        if ( level.file == 2 ){        if ( level.file == 2 ){
1064          cintcom.str("");          cintcom.str("");
1065          cintcom << "PamLevel2 *L2 = (PamLevel2*)0x" << hex;          cintcom << "PamLevel2 *L2 = (PamLevel2*)" << hex; //con const e l2 funziona
1066          cintcom << L2;          cintcom << L2;
1067          gROOT->ProcessLine(cintcom.str().c_str());          gROOT->ProcessLine(cintcom.str().c_str());
1068            //      printf(" comando: %s \n",cintcom.str().c_str());
1069        } else {        } else {
1070          cintcom.str("");          cintcom.str("");
1071          cintcom << "TTree *otr = (TTree*)0x" << hex;          cintcom << "TTree *otr = (TTree*)" << hex;
1072          cintcom << otr;          cintcom << otr;
1073          gROOT->ProcessLine(cintcom.str().c_str());          gROOT->ProcessLine(cintcom.str().c_str());
1074          //          //
1075          cintcom.str("");          cintcom.str("");
1076          cintcom << "struct Variables &var = (struct Variables &)0x" << hex;          cintcom << "struct Variables &var = (struct Variables &)" << hex;
1077          cintcom << &var;          cintcom << &var;
1078          gROOT->ProcessLine(cintcom.str().c_str());          gROOT->ProcessLine(cintcom.str().c_str());
1079        };        };
# Line 615  int FEVdetector::SelectEvent(){ Line 1084  int FEVdetector::SelectEvent(){
1084        //        //
1085        if ( level.file == -1 ) isOK = gApplication->ProcessLine("filter((TTree *)otr,-1,(Variables &)var);");        if ( level.file == -1 ) isOK = gApplication->ProcessLine("filter((TTree *)otr,-1,(Variables &)var);");
1086        //        //
1087        if ( level.file ==  2 ) isOK = gApplication->ProcessLine("filter((PamLevel2 *)L2,2);");        //      if ( level.file ==  2 ) isOK = gApplication->ProcessLine("filter((PamLevel2 *)L2,2);");
1088          if ( level.file ==  2 ) isOK = gApplication->ProcessLine("filter();");
1089        //        //
1090        // progress bar in text window        // progress bar in text window
1091        //        //
# Line 628  int FEVdetector::SelectEvent(){ Line 1098  int FEVdetector::SelectEvent(){
1098    //    //
1099  }  }
1100    
1101  Int_t FEVdetector::Load(TTree &mainotr, TFile &mainfile){  TChain* FEVdetector::Load(TString file){
1102    file = &mainfile;    //
1103    otr = &mainotr;    //  file = &mainfile;
   L2 = new PamLevel2();  
1104    //    //
1105    if ( level.file == 2 ){    if ( level.file == 2 ){
1106      //    otr = L2->LoadPamTrees(file);      //
1107      //    printf(" %s \n",ddec.Data());      //    printf(" %s \n",ddec.Data());
1108      otr = L2->GetPamTree(file,ddec.Data());      if ( !L2 ){
1109          L2 = new PamLevel2("",file.Data(),ddec.Data());
1110          if ( NODB ) L2->NoDBconnections();
1111          otr = L2->GetPamTree();
1112          //      printf(" l2 constructor\n");
1113          //      printf(" abst %u obt %u qtot %f \n",L2->GetOrbitalInfo()->absTime,L2->GetOrbitalInfo()->OBT,L2->GetCaloLevel2()->qtot);    
1114        } else {
1115          //
1116          //      printf(" l2 already exist \n");
1117          otr = L2->GetPamTree(gSystem->DirName(file.Data()),file.Data(),ddec.Data());
1118          L2->GetRunTree(gSystem->DirName(file.Data()),file.Data());
1119          //
1120        };
1121        //
1122      //      //
1123      if ( !otr ) return(0);      if ( !otr ) return(0);
     // ********************  
     // load magnetic field  
     // ********************  
     const char *pam_calib = pathtocalibration();  
1124      //      //
1125      stringstream magfie;      //    otr->CanDeleteRefs(true);
1126      magfie.str("");      //    if ( runtree ) runtree->CanDeleteRefs(true);
     //    magfie << "/localdisk/mocchiut/test/calib/trk-param/field_param-0/";  
     magfie << pam_calib;  
     magfie << "/trk-param/field_param-0/";  
1127      //      //
     L2->GetTrkLevel2()->LoadField(magfie.str().c_str());  
1128    } else {    } else {
1129      //      //
1130      // load calorimeter ADC2MIP conversion file      // load calorimeter ADC2MIP conversion file
# Line 691  Int_t FEVdetector::Load(TTree &mainotr, Line 1165  Int_t FEVdetector::Load(TTree &mainotr,
1165    };    };
1166    //    //
1167    //    //
1168    trigger = new pamela::trigger::TriggerEvent();    // Load level0 file if the case
   eh = new pamela::EventHeader();  
   ph = new pamela::PscuHeader();  
   //  oinfoL2 = new OrbitalInfo();  
   runinfo = new ItoRunInfo(file);  
   //  
   de = new pamela::calorimeter::CalorimeterEvent();  
   trk = new pamela::tracker::TrackerEvent();  
   ne = new pamela::neutron::NeutronEvent();  
   ace = new pamela::anticounter::AnticounterEvent();  
   s4 = new pamela::S4::S4Event();  
   tof = new pamela::tof::TofEvent();  
1169    //    //
1170    if ( level.file == 0 || level.file == -1 ){    if ( level.file == 0 || level.file == -1 ){
1171        //
1172        trigger = new pamela::trigger::TriggerEvent();
1173        eh = new pamela::EventHeader();
1174        ph = new pamela::PscuHeader();
1175        de = new pamela::calorimeter::CalorimeterEvent();
1176        trk = new pamela::tracker::TrackerEvent();
1177        ne = new pamela::neutron::NeutronEvent();
1178        ace = new pamela::anticounter::AnticounterEvent();
1179        s4 = new pamela::S4::S4Event();
1180        tof = new pamela::tof::TofEvent();
1181        //
1182        otr = new TChain("Physics");
1183        otr->Add(file.Data(),-1);
1184      otr->SetBranchAddress("Trigger", &trigger);      otr->SetBranchAddress("Trigger", &trigger);
1185      otr->SetBranchAddress("Header", &eh);      otr->SetBranchAddress("Header", &eh);
1186    };    };
   if ( level.file == 2 && var.RUN){  
     //    otr->AddFriend("OrbitalInfo", file);        
     //    otr->SetBranchAddress("OrbitalInfo", &oinfoL2);          
     runinfo->Read(0ULL);  
   };  
1187    //    //
1188    if ( var.TRK ) {    if ( var.TRK ) {
1189      if ( level.file == 0 || level.file == -1 ){      if ( level.file == 0 || level.file == -1 ){
# Line 785  Int_t FEVdetector::Load(TTree &mainotr, Line 1256  Int_t FEVdetector::Load(TTree &mainotr,
1256      };      };
1257    };    };
1258    //    //
1259    return(1);    if ( !otr ){
1260        return(0);
1261      };
1262      //
1263      return otr;
1264    //        //    
1265  }  }
1266    
1267    bool bit(int decimal, char pos)
1268    {
1269      return( (decimal>>pos)%2 );
1270    }
1271    //
1272    // THE PATTERN TRIGGER
1273    //
1274    void FEVdetector::ShowTRG(){
1275      //
1276      if ( level.file != 2 ) return;
1277      //
1278      if ( !var.TRG ) return;
1279      //
1280      int S11[8];
1281      S11[0] = 0;
1282      S11[1] = 0;
1283      S11[2] = 0;
1284      S11[3] = 0;
1285      S11[4] = 0;
1286      S11[5] = 0;
1287      S11[6] = 0;
1288      S11[7] = 0;
1289    
1290      int S12[6];
1291      S12[0] = 0;
1292      S12[1] = 0;
1293      S12[2] = 0;
1294      S12[3] = 0;
1295      S12[4] = 0;
1296      S12[5] = 0;
1297    
1298      int S21[2];
1299      S21[0] = 0;
1300      S21[1] = 0;
1301    
1302      int S22[2];
1303      S22[0] = 0;
1304      S22[1] = 0;
1305    
1306      int S31[3];
1307      S31[0] = 0;
1308      S31[1] = 0;
1309      S31[2] = 0;
1310    
1311      int S32[3];
1312      S32[0] = 0;
1313      S32[1] = 0;
1314      S32[2] = 0;
1315    
1316      //S3
1317      if ( bit(L2->GetTrigLevel2()->patterntrig[2],0) ) S31[0]++;
1318      if ( bit(L2->GetTrigLevel2()->patterntrig[2],1) ) S31[1]++;
1319      if ( bit(L2->GetTrigLevel2()->patterntrig[2],2) ) S31[2]++;
1320      if ( bit(L2->GetTrigLevel2()->patterntrig[2],3) ) S31[0]++;
1321      if ( bit(L2->GetTrigLevel2()->patterntrig[2],4) ) S31[1]++;
1322      if ( bit(L2->GetTrigLevel2()->patterntrig[2],5) ) S31[2]++;
1323      if ( bit(L2->GetTrigLevel2()->patterntrig[2],6) ) S32[0]++;
1324      if ( bit(L2->GetTrigLevel2()->patterntrig[2],7) ) S32[1]++;
1325      if ( bit(L2->GetTrigLevel2()->patterntrig[2],8) ) S32[2]++;
1326      if ( bit(L2->GetTrigLevel2()->patterntrig[2],9) ) S32[0]++;
1327      if ( bit(L2->GetTrigLevel2()->patterntrig[2],10) ) S32[1]++;
1328      if ( bit(L2->GetTrigLevel2()->patterntrig[2],11) ) S32[2]++;
1329      //S2
1330      if ( bit(L2->GetTrigLevel2()->patterntrig[3],0) ) S21[0]++;
1331      if ( bit(L2->GetTrigLevel2()->patterntrig[3],1) ) S21[1]++;
1332      if ( bit(L2->GetTrigLevel2()->patterntrig[3],2) ) S21[0]++;
1333      if ( bit(L2->GetTrigLevel2()->patterntrig[3],3) ) S21[1]++;
1334      if ( bit(L2->GetTrigLevel2()->patterntrig[3],4) ) S22[0]++;
1335      if ( bit(L2->GetTrigLevel2()->patterntrig[3],5) ) S22[1]++;
1336      if ( bit(L2->GetTrigLevel2()->patterntrig[3],6) ) S22[0]++;
1337      if ( bit(L2->GetTrigLevel2()->patterntrig[3],7) ) S22[1]++;
1338      //S12
1339      if ( bit(L2->GetTrigLevel2()->patterntrig[4],0) ) S12[0]++;
1340      if ( bit(L2->GetTrigLevel2()->patterntrig[4],1) ) S12[1]++;
1341      if ( bit(L2->GetTrigLevel2()->patterntrig[4],2) ) S12[2]++;
1342      if ( bit(L2->GetTrigLevel2()->patterntrig[4],3) ) S12[3]++;
1343      if ( bit(L2->GetTrigLevel2()->patterntrig[4],4) ) S12[4]++;
1344      if ( bit(L2->GetTrigLevel2()->patterntrig[4],5) ) S12[5]++;
1345      if ( bit(L2->GetTrigLevel2()->patterntrig[4],6) ) S12[0]++;
1346      if ( bit(L2->GetTrigLevel2()->patterntrig[4],7) ) S12[1]++;
1347      if ( bit(L2->GetTrigLevel2()->patterntrig[4],8) ) S12[2]++;
1348      if ( bit(L2->GetTrigLevel2()->patterntrig[4],9) ) S12[3]++;
1349      if ( bit(L2->GetTrigLevel2()->patterntrig[4],10) ) S12[4]++;
1350      if ( bit(L2->GetTrigLevel2()->patterntrig[4],11) ) S12[5]++;
1351      //S11
1352      if ( bit(L2->GetTrigLevel2()->patterntrig[5],0) ) S11[0]++;
1353      if ( bit(L2->GetTrigLevel2()->patterntrig[5],1) ) S11[1]++;
1354      if ( bit(L2->GetTrigLevel2()->patterntrig[5],2) ) S11[2]++;
1355      if ( bit(L2->GetTrigLevel2()->patterntrig[5],3) ) S11[3]++;
1356      if ( bit(L2->GetTrigLevel2()->patterntrig[5],4) ) S11[4]++;
1357      if ( bit(L2->GetTrigLevel2()->patterntrig[5],5) ) S11[5]++;
1358      if ( bit(L2->GetTrigLevel2()->patterntrig[5],6) ) S11[6]++;
1359      if ( bit(L2->GetTrigLevel2()->patterntrig[5],7) ) S11[7]++;
1360      if ( bit(L2->GetTrigLevel2()->patterntrig[5],8) ) S11[0]++;
1361      if ( bit(L2->GetTrigLevel2()->patterntrig[5],9) ) S11[1]++;
1362      if ( bit(L2->GetTrigLevel2()->patterntrig[5],10) ) S11[2]++;
1363      if ( bit(L2->GetTrigLevel2()->patterntrig[5],11) ) S11[3]++;
1364      if ( bit(L2->GetTrigLevel2()->patterntrig[5],12) ) S11[4]++;
1365      if ( bit(L2->GetTrigLevel2()->patterntrig[5],13) ) S11[5]++;
1366      if ( bit(L2->GetTrigLevel2()->patterntrig[5],14) ) S11[6]++;
1367      if ( bit(L2->GetTrigLevel2()->patterntrig[5],15) ) S11[7]++;
1368    
1369    
1370      //
1371      Int_t rj = 0;
1372      Float_t xs2x = var.xxvc;
1373      Float_t ys2x = var.yxvc + 0.36*var.sfy;
1374      Float_t xs2y = var.xyvc;
1375      Float_t ys2y = var.yyvc + 0.36*var.sfy;
1376      Float_t ws2 = 0.005;
1377      Float_t ws13 = 0.007;
1378      Int_t noadc;
1379      if ( var.bw ){
1380        noadc=12;
1381      } else {
1382        noadc=kRed;
1383      };
1384      //
1385      // S11  X-view
1386      //
1387      Float_t s11p = 0.051;
1388      TPolyLine *ftrg11x[8];
1389      for ( Int_t j=0; j<8; j++){
1390        Float_t nxc1[5]={ (s11p*j),       (s11p*j),               s11p*(j+1),     s11p*(j+1), (s11p*j)};
1391        Float_t nyc1[5]={ 0.,                       ws13,     ws13,   0.,  0.};
1392        Float_t nxc[5];    
1393        Float_t nyc[5];
1394        for (Int_t i = 0; i<5 ; i++) {
1395          nxc[i]= xs2x + (-0.204+nxc1[i])*var.sfx;
1396          nyc[i] = ys2x + (0.295+nyc1[i])*var.sfy;
1397        };
1398        ftrg11x[j] = new TPolyLine(5,nxc,nyc);
1399        ftrg11x[j]->SetLineColor(noadc);
1400        ftrg11x[j]->SetLineWidth(S11[j]);
1401        if ( S11[j] )  ftrg11x[j]->Draw();
1402      };
1403      //
1404      // S12  Y-view
1405      //
1406      Float_t s12p = 0.055;
1407      TPolyLine *ftrg12y[6];
1408      rj = 6;
1409      for ( Int_t j=0; j<6; j++){
1410        rj--;
1411        Float_t nxc1[5]={ (s12p*j),       (s12p*j),               s12p*(j+1), s12p*(j+1),    (s12p*j)};
1412        Float_t nyc1[5]={      -ws13,     0.,  0., -ws13, -ws13};
1413        Float_t nxc[5];    
1414        Float_t nyc[5];
1415        for (Int_t i = 0; i<5 ; i++) {
1416          nxc[i]= xs2y + (-0.165+nxc1[i])*var.sfx;
1417          nyc[i] = ys2y + (0.295+nyc1[i])*var.sfy;
1418        };
1419        ftrg12y[j] = new TPolyLine(5,nxc,nyc);
1420        ftrg12y[j]->SetLineColor(noadc);
1421        ftrg12y[j]->SetLineWidth(S12[rj]);
1422        if ( S12[rj] ) ftrg12y[j]->Draw();
1423      };
1424    
1425      
1426      //
1427      // S21  Y-view
1428      //
1429      Float_t s21p = 0.075;
1430      TPolyLine *ftrg21y[2];
1431      rj=2;
1432      for ( Int_t j=0; j<2; j++){
1433        rj--;
1434        Float_t nxc1[5]={ s21p*(j-1),       s21p*(j-1),               s21p*j,s21p*j,     s21p*(j-1)};
1435        Float_t nyc1[5]={ 0.,                ws2,     ws2,  0.,  0.};
1436        Float_t nxc[5];    
1437        Float_t nyc[5];
1438        for (Int_t i = 0; i<5 ; i++) {
1439          nxc[i]= xs2y + nxc1[i]*var.sfx;
1440          nyc[i] = ys2y + nyc1[i]*var.sfy;
1441          //      printf(" TRG i %i x %f y %f \n",i,nxc[i],nyc[i]);
1442        };
1443        ftrg21y[j] = new TPolyLine(5,nxc,nyc);
1444        ftrg21y[j]->SetLineColor(noadc);
1445        ftrg21y[j]->SetLineWidth(S21[j]);
1446        if ( S21[j]) ftrg21y[j]->Draw();
1447      };
1448    
1449      //
1450      // S22  X-view
1451      //
1452      Float_t s22p = 0.090;
1453      TPolyLine *ftrg22x[2];
1454      for ( Int_t j=0; j<2; j++){
1455        Float_t nxc1[5]={ s22p*(j-1),       s22p*(j-1),               s22p*j, s22p*j,     s22p*(j-1)};
1456        Float_t nyc1[5]={                -ws2,   0., 0.,  -ws2,  -ws2};
1457        Float_t nxc[5];    
1458        Float_t nyc[5];
1459        for (Int_t i = 0; i<5 ; i++) {
1460          nxc[i]= xs2x + nxc1[i]*var.sfx;
1461          nyc[i] = ys2x + nyc1[i]*var.sfy;
1462        };
1463        ftrg22x[j] = new TPolyLine(5,nxc,nyc);
1464        ftrg22x[j]->SetLineColor(noadc);
1465        ftrg22x[j]->SetLineWidth(S22[j]);
1466        if ( S22[j] ) ftrg22x[j]->Draw();
1467      };
1468      //
1469      // S31  X-view
1470      //
1471      Float_t s31p = 0.060;
1472      TPolyLine *ftrg31x[3];
1473      for ( Int_t j=0; j<3; j++){
1474        Float_t nxc1[5]={ (s31p*j),       (s31p*j),               s31p*(j+1), s31p*(j+1),       (s31p*j)};
1475        Float_t nyc1[5]={ 0.,                       ws13,     ws13,    0.,    0.};
1476        Float_t nxc[5];    
1477        Float_t nyc[5];
1478        for (Int_t i = 0; i<5 ; i++) {
1479          nxc[i]= xs2x + (-0.090+nxc1[i])*var.sfx;
1480          nyc[i] = ys2x + (-0.488+nyc1[i])*var.sfy;
1481        };
1482        ftrg31x[j] = new TPolyLine(5,nxc,nyc);
1483        ftrg31x[j]->SetLineColor(noadc);
1484        ftrg31x[j]->SetLineWidth(S31[j]);
1485        if ( S31[j] ) ftrg31x[j]->Draw();
1486      };
1487    
1488      //
1489      // S32  Y-view
1490      //
1491      Float_t s32p = 0.050;
1492      TPolyLine *ftrg32y[3];
1493      rj = 3;
1494      for ( Int_t j=0; j<3; j++){
1495        rj--;
1496        Float_t nxc1[5]={ (s32p*j),       (s32p*j),               s32p*(j+1),s32p*(j+1),     (s32p*j)};
1497        Float_t nyc1[5]={     -ws13,     0.,    0., -ws13, -ws13};
1498        Float_t nxc[5];    
1499        Float_t nyc[5];
1500        for (Int_t i = 0; i<5 ; i++) {
1501          nxc[i]= xs2y + (-0.075+nxc1[i])*var.sfx;
1502          nyc[i] = ys2y + (-0.488+nyc1[i])*var.sfy;
1503        };
1504        ftrg32y[j] = new TPolyLine(5,nxc,nyc);
1505        ftrg32y[j]->SetLineColor(noadc);
1506        ftrg32y[j]->SetLineWidth(S32[rj]);
1507        if ( S32[rj] ) ftrg32y[j]->Draw();
1508      }
1509    }
1510    
1511  void FEVdetector::DisplayEvent(){  void FEVdetector::DisplayEvent(){
1512    TLatex *text=new TLatex();    TLatex *text=new TLatex();
1513    stringstream testo;    stringstream testo;
# Line 804  void FEVdetector::DisplayEvent(){ Line 1523  void FEVdetector::DisplayEvent(){
1523    thefigure->cd();          thefigure->cd();      
1524    ShowTOF();    ShowTOF();
1525    //    //
1526      // show pattern trigger if the case
1527      //
1528      thefigure->cd();
1529      if ( var.PATTRIG ){
1530        ShowTRG();
1531        thefigure->Modified();
1532        thefigure->Update();
1533      }
1534      //
1535    // show anticounters    // show anticounters
1536    //    //
1537    thefigure->cd();          thefigure->cd();      
# Line 861  void FEVdetector::DisplayEvent(){ Line 1589  void FEVdetector::DisplayEvent(){
1589      text->DrawLatex(0.33,txthi,testo.str().c_str());      text->DrawLatex(0.33,txthi,testo.str().c_str());
1590      txthi -= 0.03;      txthi -= 0.03;
1591      testo2.str("");      testo2.str("");
1592      testo2 << "On Board Time: " << (int)OBT;      testo2 << "On Board Time: " << (unsigned int)OBT;
1593      if ( DOBT > 0 ) {                    if ( DOBT > 0 ) {              
1594        testo2 << " (delta: " << (int)DOBT;        testo2 << " (delta: " << (unsigned int)DOBT;
1595        testo2 << ")";        testo2 << ")";
1596      };      };
1597      testo2 << " [ms]";      testo2 << " [ms]";
# Line 900  void FEVdetector::DisplayEvent(){ Line 1628  void FEVdetector::DisplayEvent(){
1628      testo3 << "S4: ";// << setprecision(2);      testo3 << "S4: ";// << setprecision(2);
1629      testo3 << var.s4sig << " [MIP]   TOF: #beta = ";      testo3 << var.s4sig << " [MIP]   TOF: #beta = ";
1630      testo3 << setprecision(3) << var.beta[4];      testo3 << setprecision(3) << var.beta[4];
1631        if ( level.file == 2 ){
1632          testo3 << " SVL cutoff: ";
1633          testo3 << setprecision(3) << L2->GetOrbitalInfo()->GetCutoffSVL();//quiquiqui
1634        }
1635      text->DrawLatex(0.33,txthi,testo3.str().c_str());            text->DrawLatex(0.33,txthi,testo3.str().c_str());      
1636      txthi -= 0.03;      txthi -= 0.03;
1637      testo3.str("");      testo3.str("");
# Line 1021  void FEVdetector::DisplayEvent(){ Line 1753  void FEVdetector::DisplayEvent(){
1753        text->DrawLatex(var.xxvc+0.17*var.sfx,var.yxvc-0.08*var.sfy,"CAS1");        text->DrawLatex(var.xxvc+0.17*var.sfx,var.yxvc-0.08*var.sfy,"CAS1");
1754        text->DrawLatex(var.xyvc-0.192*var.sfx,var.yyvc-0.08*var.sfy,"CAS4");        text->DrawLatex(var.xyvc-0.192*var.sfx,var.yyvc-0.08*var.sfy,"CAS4");
1755        text->DrawLatex(var.xyvc+0.17*var.sfx,var.yyvc-0.08*var.sfy,"CAS3");        text->DrawLatex(var.xyvc+0.17*var.sfx,var.yyvc-0.08*var.sfy,"CAS3");
1756        text->DrawLatex(var.xxvc-0.192*var.sfx,var.yxvc+0.48*var.sfy,"CARD2");        text->DrawLatex(var.xxvc-0.222*var.sfx,var.yxvc+0.48*var.sfy,"CARD2");
1757        text->DrawLatex(var.xxvc+0.155*var.sfx,var.yxvc+0.48*var.sfy,"CARD3");        text->DrawLatex(var.xxvc+0.185*var.sfx,var.yxvc+0.48*var.sfy,"CARD3");
1758        text->DrawLatex(var.xyvc-0.170*var.sfx,var.yyvc+0.48*var.sfy,"CARD1");        text->DrawLatex(var.xyvc-0.190*var.sfx,var.yyvc+0.48*var.sfy,"CARD1");
1759        text->DrawLatex(var.xyvc+0.13*var.sfx,var.yyvc+0.48*var.sfy,"CARD4");        text->DrawLatex(var.xyvc+0.16*var.sfx,var.yyvc+0.48*var.sfy,"CARD4");
1760        text->DrawLatex(var.xxvc-0.192*var.sfx,var.yxvc+0.39*var.sfy,"CAT3");        text->DrawLatex(var.xxvc-0.192*var.sfx,var.yxvc+0.39*var.sfy,"CAT3");
1761        text->DrawLatex(var.xxvc+0.155*var.sfx,var.yxvc+0.39*var.sfy,"CAT4");        text->DrawLatex(var.xxvc+0.155*var.sfx,var.yxvc+0.39*var.sfy,"CAT4");
1762        text->DrawLatex(var.xyvc-0.170*var.sfx,var.yyvc+0.39*var.sfy,"CAT2");        text->DrawLatex(var.xyvc-0.170*var.sfx,var.yyvc+0.39*var.sfy,"CAT2");
# Line 1152  void FEVdetector::DisplayEvent(){ Line 1884  void FEVdetector::DisplayEvent(){
1884    //    //
1885    // print infos on terminal    // print infos on terminal
1886    //    //
1887      //  if ( !var.selex ){
1888    printf(" File: %s \n",var.thefilename.Data());            printf(" File: %s \n",var.thefilename.Data());        
1889    if ( !s4pulser && !calotrig ){    if ( !s4pulser && !calotrig ){
1890      printf(" Pkt_num: %i  - Progressive number: %i \n",(int)headc,thisentry+1);      printf(" Pkt_num: %i  - Progressive number: %i \n",(int)headc,thisentry+1);
# Line 1162  void FEVdetector::DisplayEvent(){ Line 1895  void FEVdetector::DisplayEvent(){
1895    if ( calotrig ){    if ( calotrig ){
1896      printf(" Pkt_num: %i  - Progressive number: %i   - CALO trigger -\n",(int)headc,thisentry+1);      printf(" Pkt_num: %i  - Progressive number: %i   - CALO trigger -\n",(int)headc,thisentry+1);
1897    };    };
1898    printf(" On Board Time: %i (delta %i) [ms]\n",OBT,DOBT);    printf(" On Board Time: %u (delta %i) [ms]\n",OBT,DOBT);
1899    const char *trc2 = trcs;    const char *trc2 = trcs;
1900    printf(" TRIGGER: %s \n",trc2);          printf(" TRIGGER: %s \n",trc2);      
1901    printf(" AC: CARD hit = %i  CAT hit = %i  CAS hit = %i \n",var.hcard,var.hcat,var.hcas);          printf(" AC: CARD hit = %i  CAT hit = %i  CAS hit = %i \n",var.hcard,var.hcat,var.hcas);      
# Line 1174  void FEVdetector::DisplayEvent(){ Line 1907  void FEVdetector::DisplayEvent(){
1907    printf(" CALO: NSTRIP = %i  QTOT = %i [MIP]\n",var.nstrip,var.qtot);      printf(" CALO: NSTRIP = %i  QTOT = %i [MIP]\n",var.nstrip,var.qtot);  
1908    printf(" S4: %.2f [MIP]   TOF: beta = %.2f \n",var.s4sig,var.beta[4]);            printf(" S4: %.2f [MIP]   TOF: beta = %.2f \n",var.s4sig,var.beta[4]);        
1909    printf(" ND: Trigger: neutrons = %i - Background: upper = %i lower = %i \n",var.trup,var.bkup,var.bkbo);          printf(" ND: Trigger: neutrons = %i - Background: upper = %i lower = %i \n",var.trup,var.bkup,var.bkbo);      
1910      //  };
1911    //    //
1912  }  }
1913    
# Line 1481  void FEVdetector::ShowPalette(){ Line 2215  void FEVdetector::ShowPalette(){
2215  void FEVdetector::ShowTOF(){  void FEVdetector::ShowTOF(){
2216    //    //
2217    //    //
   //  
2218    if ( !var.TOF ) return;    if ( !var.TOF ) return;
2219    //    //
2220    Int_t tt = 0;    Int_t tt = 0;
2221      Int_t rj = 0;
2222    //    //
2223    // force level0, i.e. show patterntrig variable!    // force level0, i.e. show patterntrig variable!
2224    //    //
# Line 1514  void FEVdetector::ShowTOF(){ Line 2248  void FEVdetector::ShowTOF(){
2248      Float_t mt31[2][3];      Float_t mt31[2][3];
2249      Float_t mt32[2][3];      Float_t mt32[2][3];
2250      //      //
2251        memset(mt11,0,2*8*sizeof(Float_t));
2252        memset(mt12,0,2*6*sizeof(Float_t));
2253        memset(mt21,0,2*2*sizeof(Float_t));
2254        memset(mt22,0,2*2*sizeof(Float_t));
2255        memset(mt31,0,2*3*sizeof(Float_t));
2256        memset(mt32,0,2*3*sizeof(Float_t));
2257        //
2258      Int_t S3 = 0;      Int_t S3 = 0;
2259      Int_t S2 = 0;      Int_t S2 = 0;
2260      Int_t S12 = 0;      Int_t S12 = 0;
# Line 1678  void FEVdetector::ShowTOF(){ Line 2419  void FEVdetector::ShowTOF(){
2419      Float_t s12p = 0.055;      Float_t s12p = 0.055;
2420      ocolo = 10;      ocolo = 10;
2421      TPolyLine *ftof12ya[6];      TPolyLine *ftof12ya[6];
2422        rj=6;
2423      for ( Int_t j=0; j<6; j++){      for ( Int_t j=0; j<6; j++){
2424          rj--;
2425        Float_t xc1[4]={ (s12p*j),       s12p*(j),               s12p*(j+1),     (s12p*j)};        Float_t xc1[4]={ (s12p*j),       s12p*(j),               s12p*(j+1),     (s12p*j)};
2426        Float_t yc1[4]={      -ws13,     0.,  0., -ws13};        Float_t yc1[4]={      -ws13,     0.,  0., -ws13};
2427        Float_t xc[4];            Float_t xc[4];    
# Line 1694  void FEVdetector::ShowTOF(){ Line 2437  void FEVdetector::ShowTOF(){
2437        } else {        } else {
2438          colo = 1;          colo = 1;
2439        };        };
2440        ColorMIP(ms12a[j],colo);        ColorMIP(ms12a[rj],colo);
2441        //        //
2442        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2443        if ( mt12[0][j] == 4095. ) colo = noadc;        if ( mt12[0][rj] == 4095. ) colo = noadc;
2444        //        //
2445        ftof12ya[j]->SetFillColor(colo);        ftof12ya[j]->SetFillColor(colo);
2446        ftof12ya[j]->SetLineWidth(1);        ftof12ya[j]->SetLineWidth(1);
# Line 1707  void FEVdetector::ShowTOF(){ Line 2450  void FEVdetector::ShowTOF(){
2450      // B      // B
2451      s12p = 0.055;      s12p = 0.055;
2452      TPolyLine *ftof12yb[6];      TPolyLine *ftof12yb[6];
2453        rj=6;
2454      for ( Int_t j=0; j<6; j++){      for ( Int_t j=0; j<6; j++){
2455          rj--;
2456        Float_t xc1[4]={ (s12p*j),       s12p*(j+1),               s12p*(j+1),     (s12p*j)};        Float_t xc1[4]={ (s12p*j),       s12p*(j+1),               s12p*(j+1),     (s12p*j)};
2457        Float_t yc1[4]={ -ws13,     -ws13,    0., -ws13};        Float_t yc1[4]={ -ws13,     -ws13,    0., -ws13};
2458        Float_t xc[4];            Float_t xc[4];    
# Line 1723  void FEVdetector::ShowTOF(){ Line 2468  void FEVdetector::ShowTOF(){
2468        } else {        } else {
2469          colo = 1;          colo = 1;
2470        };        };
2471        ColorMIP(ms12b[j],colo);        ColorMIP(ms12b[rj],colo);
2472        //        //
2473        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2474        if ( mt12[1][j] == 4095. ) colo = noadc;        if ( mt12[1][rj] == 4095. ) colo = noadc;
2475        //        //
2476        ftof12yb[j]->SetFillColor(colo);        ftof12yb[j]->SetFillColor(colo);
2477        ftof12yb[j]->SetLineWidth(1);        ftof12yb[j]->SetLineWidth(1);
# Line 1760  void FEVdetector::ShowTOF(){ Line 2505  void FEVdetector::ShowTOF(){
2505      Float_t s21p = 0.075;      Float_t s21p = 0.075;
2506      ocolo = 10;      ocolo = 10;
2507      TPolyLine *ftof21ya[2];      TPolyLine *ftof21ya[2];
2508        rj=2;
2509      for ( Int_t j=0; j<2; j++){      for ( Int_t j=0; j<2; j++){
2510          rj--;
2511        Float_t xc1[4]={ s21p*(j-1),       s21p*(j-1),               s21p*j,     s21p*(j-1)};        Float_t xc1[4]={ s21p*(j-1),       s21p*(j-1),               s21p*j,     s21p*(j-1)};
2512        Float_t yc1[4]={ 0.,                ws2,     ws2,    0.};        Float_t yc1[4]={ 0.,                ws2,     ws2,    0.};
2513        Float_t xc[4];            Float_t xc[4];    
# Line 1776  void FEVdetector::ShowTOF(){ Line 2523  void FEVdetector::ShowTOF(){
2523        } else {        } else {
2524          colo = 1;          colo = 1;
2525        };        };
2526        ColorMIP(ms21a[j],colo);        ColorMIP(ms21a[rj],colo);
2527        //        //
2528        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2529        if ( mt21[0][j] == 4095. ) colo = noadc;        if ( mt21[0][rj] == 4095. ) colo = noadc;
2530        //        //
2531        ftof21ya[j]->SetFillColor(colo);        ftof21ya[j]->SetFillColor(colo);
2532        ftof21ya[j]->SetLineWidth(1);        ftof21ya[j]->SetLineWidth(1);
# Line 1789  void FEVdetector::ShowTOF(){ Line 2536  void FEVdetector::ShowTOF(){
2536      // B      // B
2537      s21p = 0.075;      s21p = 0.075;
2538      TPolyLine *ftof21yb[2];      TPolyLine *ftof21yb[2];
2539        rj=2;
2540      for ( Int_t j=0; j<2; j++){      for ( Int_t j=0; j<2; j++){
2541          rj--;
2542        Float_t xc1[4]={ s21p*(j-1),       s21p*j,               s21p*j,     s21p*(j-1)};        Float_t xc1[4]={ s21p*(j-1),       s21p*j,               s21p*j,     s21p*(j-1)};
2543        Float_t yc1[4]={ 0.,         0.,                ws2,         0.};        Float_t yc1[4]={ 0.,         0.,                ws2,         0.};
2544        Float_t xc[4];            Float_t xc[4];    
# Line 1805  void FEVdetector::ShowTOF(){ Line 2554  void FEVdetector::ShowTOF(){
2554        } else {        } else {
2555          colo = 1;          colo = 1;
2556        };        };
2557        ColorMIP(ms21b[j],colo);        ColorMIP(ms21b[rj],colo);
2558        //        //
2559        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2560        if ( mt21[1][j] == 4095. ) colo = noadc;        if ( mt21[1][rj] == 4095. ) colo = noadc;
2561        //        //
2562        ftof21yb[j]->SetFillColor(colo);        ftof21yb[j]->SetFillColor(colo);
2563        ftof21yb[j]->SetLineWidth(1);        ftof21yb[j]->SetLineWidth(1);
# Line 1923  void FEVdetector::ShowTOF(){ Line 2672  void FEVdetector::ShowTOF(){
2672      Float_t s31p = 0.060;      Float_t s31p = 0.060;
2673      ocolo = 10;      ocolo = 10;
2674      TPolyLine *ftof31xa[3];      TPolyLine *ftof31xa[3];
2675        rj=3;
2676      for ( Int_t j=0; j<3; j++){      for ( Int_t j=0; j<3; j++){
2677          rj--;
2678        Float_t xc1[4]={ (s31p*j),       (s31p*j),               s31p*(j+1),       (s31p*j)};        Float_t xc1[4]={ (s31p*j),       (s31p*j),               s31p*(j+1),       (s31p*j)};
2679        Float_t yc1[4]={ 0.,                       ws13,     ws13,    0.};        Float_t yc1[4]={ 0.,                       ws13,     ws13,    0.};
2680        Float_t xc[4];            Float_t xc[4];    
# Line 1939  void FEVdetector::ShowTOF(){ Line 2690  void FEVdetector::ShowTOF(){
2690        } else {        } else {
2691          colo = 1;          colo = 1;
2692        };        };
2693        ColorMIP(ms31a[j],colo);        ColorMIP(ms31a[rj],colo);
2694        //        //
2695        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2696        if ( mt31[0][j] == 4095. ) colo = noadc;        if ( mt31[0][rj] == 4095. ) colo = noadc;
2697        //        //
2698        ftof31xa[j]->SetFillColor(colo);        ftof31xa[j]->SetFillColor(colo);
2699        ftof31xa[j]->SetLineWidth(1);        ftof31xa[j]->SetLineWidth(1);
# Line 1952  void FEVdetector::ShowTOF(){ Line 2703  void FEVdetector::ShowTOF(){
2703      // B      // B
2704      s31p = 0.060;      s31p = 0.060;
2705      TPolyLine *ftof31xb[3];      TPolyLine *ftof31xb[3];
2706        rj=3;
2707      for ( Int_t j=0; j<3; j++){      for ( Int_t j=0; j<3; j++){
2708          rj--;
2709        Float_t xc1[4]={ (s31p*j),       s31p*(j+1),               s31p*(j+1),     (s31p*j)};        Float_t xc1[4]={ (s31p*j),       s31p*(j+1),               s31p*(j+1),     (s31p*j)};
2710        Float_t yc1[4]={ 0.,                        0.,     ws13,    0.};        Float_t yc1[4]={ 0.,                        0.,     ws13,    0.};
2711        Float_t xc[4];            Float_t xc[4];    
# Line 1968  void FEVdetector::ShowTOF(){ Line 2721  void FEVdetector::ShowTOF(){
2721        } else {        } else {
2722          colo = 1;          colo = 1;
2723        };        };
2724        ColorMIP(ms31b[j],colo);        ColorMIP(ms31b[rj],colo);
2725        //        //
2726        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2727        if ( mt31[1][j] == 4095. ) colo = noadc;        if ( mt31[1][rj] == 4095. ) colo = noadc;
2728        //        //
2729        ftof31xb[j]->SetFillColor(colo);        ftof31xb[j]->SetFillColor(colo);
2730        ftof31xb[j]->SetLineWidth(1);        ftof31xb[j]->SetLineWidth(1);
# Line 2003  void FEVdetector::ShowTOF(){ Line 2756  void FEVdetector::ShowTOF(){
2756      Float_t s32p = 0.050;      Float_t s32p = 0.050;
2757      ocolo = 10;      ocolo = 10;
2758      TPolyLine *ftof32ya[3];      TPolyLine *ftof32ya[3];
2759        rj=3;
2760      for ( Int_t j=0; j<3; j++){      for ( Int_t j=0; j<3; j++){
2761          rj--;
2762        Float_t xc1[4]={ (s32p*j),       (s32p*j),               s32p*(j+1),     (s32p*j)};        Float_t xc1[4]={ (s32p*j),       (s32p*j),               s32p*(j+1),     (s32p*j)};
2763        Float_t yc1[4]={     -ws13,     0.,    0., -ws13};        Float_t yc1[4]={     -ws13,     0.,    0., -ws13};
2764        Float_t xc[4];            Float_t xc[4];    
# Line 2019  void FEVdetector::ShowTOF(){ Line 2774  void FEVdetector::ShowTOF(){
2774        } else {        } else {
2775          colo = 1;          colo = 1;
2776        };        };
2777        ColorMIP(ms32a[j],colo);        ColorMIP(ms32a[rj],colo);
2778        //        //
2779        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2780        if ( mt32[0][j] == 4095. ) colo = noadc;        if ( mt32[0][rj] == 4095. ) colo = noadc;
2781        //        //
2782        ftof32ya[j]->SetFillColor(colo);        ftof32ya[j]->SetFillColor(colo);
2783        ftof32ya[j]->SetLineWidth(1);        ftof32ya[j]->SetLineWidth(1);
# Line 2031  void FEVdetector::ShowTOF(){ Line 2786  void FEVdetector::ShowTOF(){
2786      };      };
2787      s32p = 0.050;      s32p = 0.050;
2788      TPolyLine *ftof32yb[3];      TPolyLine *ftof32yb[3];
2789        rj=3;
2790      for ( Int_t j=0; j<3; j++){      for ( Int_t j=0; j<3; j++){
2791          rj--;
2792        Float_t xc1[4]={ (s32p*j),       s32p*(j+1),               s32p*(j+1),     (s32p*j)};        Float_t xc1[4]={ (s32p*j),       s32p*(j+1),               s32p*(j+1),     (s32p*j)};
2793        Float_t yc1[4]={ -ws13,   -ws13,    0., -ws13};        Float_t yc1[4]={ -ws13,   -ws13,    0., -ws13};
2794        Float_t xc[4];            Float_t xc[4];    
# Line 2047  void FEVdetector::ShowTOF(){ Line 2804  void FEVdetector::ShowTOF(){
2804        } else {        } else {
2805          colo = 1;          colo = 1;
2806        };        };
2807        ColorMIP(ms32b[j],colo);        ColorMIP(ms32b[rj],colo);
2808        //        //
2809        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
2810        if ( mt32[1][j] == 4095. ) colo = noadc;        if ( mt32[1][rj] == 4095. ) colo = noadc;
2811        //        //
2812        ftof32yb[j]->SetFillColor(colo);        ftof32yb[j]->SetFillColor(colo);
2813        ftof32yb[j]->SetLineWidth(1);        ftof32yb[j]->SetLineWidth(1);
# Line 2281  void FEVdetector::ShowTOF(){ Line 3038  void FEVdetector::ShowTOF(){
3038    //    //
3039    //    //
3040    Bool_t repeat = true;    Bool_t repeat = true;
3041    Int_t numtr = 1;    //  Int_t numtr = 1;
3042      Int_t numtr = 0;
3043    Int_t repuntil = 0;    Int_t repuntil = 0;
3044      Int_t repuntiltr = 0;
3045    //      //  
3046    //    //
3047    var.tofraw = 0;    var.tofraw = 0;
3048    //    //
3049    if ( level.file == 2 ) repuntil = L2->GetToFLevel2()->ntrk();        if ( level.file == 2 ) repuntil = L2->GetToFLevel2()->ntrk();    
3050    //  printf("repuntil = %i \n",repuntil);    //  printf("repuntil = %i \n",repuntil);
3051    //repuntil = L2->GetNTracks();        if ( level.file == 2 ) repuntiltr = L2->GetTrkLevel2()->GetNTracks();    
3052      //  repuntiltr = L2->GetNTracks();    
3053    //    //
3054    while ( repeat ){    while ( repeat ){
3055      //    printf("B repuntil = %i \n",repuntil);      //    printf("B repuntil = %i \n",repuntil);
# Line 2298  void FEVdetector::ShowTOF(){ Line 3058  void FEVdetector::ShowTOF(){
3058        //        //
3059        //        //
3060        ToFTrkVar *ptt = 0;        ToFTrkVar *ptt = 0;
3061          PamTrack *ptrack = 0;
3062          Float_t adc[4][12];
3063          Float_t tdc[4][12];
3064          memset(adc,0,4*12*sizeof(Float_t));
3065          memset(tdc,0,4*12*sizeof(Float_t));
3066        //              //      
3067        //        //
3068          Int_t myseq = 0;
3069          //      if ( repuntil == 0 || var.tofraw ){
3070        if ( repuntil == 1 || var.tofraw ){        if ( repuntil == 1 || var.tofraw ){
3071          numtr = 0;          numtr = 0;
3072          ptt = L2->GetToFLevel2()->GetToFTrkVar(0);          ptt = L2->GetToFLevel2()->GetToFTrkVar(0);
3073          repeat = false;          repeat = false;
3074        } else {        } else {
3075          //          //
3076    //        printf(" deH_ \n");
3077          //          //
3078          if ( numtr >= repuntil-1 ) repeat = false;          if ( numtr == 0 ){
3079          //  //          printf(" ques \n");
3080          ptt = L2->GetToFLevel2()->GetToFTrkVar(numtr);            ptt = L2->GetToFLevel2()->GetToFTrkVar(0);
3081              myseq = 0;
3082    //          printf(" que \n");
3083    
3084            } else {
3085              if ( numtr >= (repuntiltr-1) ) repeat = false;
3086              //
3087              printf(" numtr is %i \n",numtr);
3088              // ptt = L2->GetToFLevel2()->GetToFTrkVar(numtr);    
3089              ptrack = L2->GetTrack(numtr-1);
3090              ptt = ptrack->GetToFTrack();
3091              myseq = ptt->trkseqno + 1;
3092            };
3093        };        };
3094        //        //
3095        xp11[0] = 0.;        xp11[0] = 0.;
# Line 2323  void FEVdetector::ShowTOF(){ Line 3103  void FEVdetector::ShowTOF(){
3103        //        //
3104        ii = 2;        ii = 2;
3105        //        //
3106        Float_t adc[4][12];        //      Int_t myseq = ptt->trkseqno + 1;
       Float_t tdc[4][12];  
       L2->GetToFLevel2()->GetMatrix(numtr,adc,tdc);  
   
3107        //        //
3108        for ( Int_t i = 0; i<8; i++ ) {    //      printf(" qui \n");
3109          if ( adc[ch11a[i]][hb11a[i]] < 1000. ){        L2->GetToFLevel2()->GetMatrix(myseq,adc,tdc);
3110            ms11a[i] = adc[ch11a[i]][hb11a[i]];        //
3111          };        //      printf(" qua \n");
3112          if ( adc[ch11b[i]][hb11b[i]] < 1000. ){        //
3113            ms11b[i] = adc[ch11b[i]][hb11b[i]];        //       for ( Int_t i = 0; i<8; i++ ) {  
3114          };        //        if ( adc[ch11a[i]][hb11a[i]] < 1000. ){
3115          //      xp11[i] = 0.;        //          ms11a[i] = adc[ch11a[i]][hb11a[i]];
3116        };        //        };      
3117          //        if ( adc[ch11b[i]][hb11b[i]] < 1000. ){
3118          //          ms11b[i] = adc[ch11b[i]][hb11b[i]];
3119          //        };
3120          //        xp11[i] = 0.;
3121          //    };
3122    
3123        Int_t nmtof = 0;        Int_t nmtof = 0;
3124        Float_t mtof = 0.;        Float_t mtof = 0.;
# Line 2453  void FEVdetector::ShowTOF(){ Line 3235  void FEVdetector::ShowTOF(){
3235        if ( level.file == -1 ){        if ( level.file == -1 ){
3236          ColorMIP(ms11a[j]+ms11b[j],colo);                ColorMIP(ms11a[j]+ms11b[j],colo);      
3237        } else {        } else {
3238          ColorTOFMIP(ms11a[j]+ms11b[j],colo);              ColorTOFMIP((ms11a[j]+ms11b[j])/2.,colo);      
3239        };        };
3240        //        //
3241        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 2483  void FEVdetector::ShowTOF(){ Line 3265  void FEVdetector::ShowTOF(){
3265      ftof11y->Draw();      ftof11y->Draw();
3266      TPolyLine *sftof11[8];      TPolyLine *sftof11[8];
3267      tt = 1;      tt = 1;
3268      if ( level.file == -1 ) tt = 8;      rj=1;
3269        if ( level.file == -1 ){
3270          tt = 8;
3271          rj = 8;
3272        };
3273      for ( Int_t j=0; j<tt; j++){      for ( Int_t j=0; j<tt; j++){
3274        if ( (mt11[0][j]<4095. || mt11[1][j]<4095.)){        rj--;
3275          if ( (mt11[0][rj]<4095. || mt11[1][rj]<4095.)){
3276          if ( ocolo == 10 ) ocolo = noadc;          if ( ocolo == 10 ) ocolo = noadc;
3277          Float_t lowp = (xp11[j]-E11[j])/100.;          Float_t lowp = -(xp11[rj]+E11[rj])/100.;
3278          Float_t higp = (xp11[j]+E11[j])/100.;          Float_t higp = -(xp11[rj]-E11[rj])/100.;
3279          if ( lowp < -0.164 ) lowp = -0.164;          if ( lowp < -0.164 ) lowp = -0.164;
3280          if ( higp > 0.164 ) higp = 0.164;          if ( higp > 0.164 ) higp = 0.164;
3281          if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp11[j] != 0.))){          if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp11[rj] != 0.))){
3282            Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};            Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};
3283            Float_t nyc1[5]={ 0.0015,         0.0015,                ws13-0.0015,    ws13-0.0015,    0.0015};            Float_t nyc1[5]={ 0.0015,         0.0015,                ws13-0.0015,    ws13-0.0015,    0.0015};
3284            Float_t nxc[5];                Float_t nxc[5];    
# Line 2516  void FEVdetector::ShowTOF(){ Line 3303  void FEVdetector::ShowTOF(){
3303      Float_t s12p = 0.055;      Float_t s12p = 0.055;
3304      ocolo = 10;      ocolo = 10;
3305      TPolyLine *ftof12y[6];      TPolyLine *ftof12y[6];
3306        rj = 6;
3307      for ( Int_t j=0; j<6; j++){      for ( Int_t j=0; j<6; j++){
3308          rj--;
3309        Float_t nxc1[5]={ (s12p*j),       (s12p*j),               s12p*(j+1), s12p*(j+1),    (s12p*j)};        Float_t nxc1[5]={ (s12p*j),       (s12p*j),               s12p*(j+1), s12p*(j+1),    (s12p*j)};
3310        Float_t nyc1[5]={      -ws13,     0.,  0., -ws13, -ws13};        Float_t nyc1[5]={      -ws13,     0.,  0., -ws13, -ws13};
3311        Float_t nxc[5];            Float_t nxc[5];    
# Line 2533  void FEVdetector::ShowTOF(){ Line 3322  void FEVdetector::ShowTOF(){
3322          colo = 1;          colo = 1;
3323        };        };
3324        if ( level.file == -1 ){        if ( level.file == -1 ){
3325          ColorMIP(ms12a[j]+ms12b[j],colo);          ColorMIP(ms12a[rj]+ms12b[rj],colo);
3326        } else {        } else {
3327          ColorTOFMIP(ms12a[j]+ms12b[j],colo);          ColorTOFMIP((ms12a[rj]+ms12b[rj])/2.,colo);
3328        };        };
3329        //        //
3330        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 2602  void FEVdetector::ShowTOF(){ Line 3391  void FEVdetector::ShowTOF(){
3391      Float_t s21p = 0.075;      Float_t s21p = 0.075;
3392      ocolo = 10;      ocolo = 10;
3393      TPolyLine *ftof21y[2];      TPolyLine *ftof21y[2];
3394        rj=2;
3395      for ( Int_t j=0; j<2; j++){      for ( Int_t j=0; j<2; j++){
3396          rj--;
3397        Float_t nxc1[5]={ s21p*(j-1),       s21p*(j-1),               s21p*j,s21p*j,     s21p*(j-1)};        Float_t nxc1[5]={ s21p*(j-1),       s21p*(j-1),               s21p*j,s21p*j,     s21p*(j-1)};
3398        Float_t nyc1[5]={ 0.,                ws2,     ws2,  0.,  0.};        Float_t nyc1[5]={ 0.,                ws2,     ws2,  0.,  0.};
3399        Float_t nxc[5];            Float_t nxc[5];    
# Line 2610  void FEVdetector::ShowTOF(){ Line 3401  void FEVdetector::ShowTOF(){
3401        for (Int_t i = 0; i<5 ; i++) {        for (Int_t i = 0; i<5 ; i++) {
3402          nxc[i]= xs2y + nxc1[i]*var.sfx;          nxc[i]= xs2y + nxc1[i]*var.sfx;
3403          nyc[i] = ys2y + nyc1[i]*var.sfy;          nyc[i] = ys2y + nyc1[i]*var.sfy;
3404            //        printf(" TOF i %i x %f y %f \n",i,nxc[i],nyc[i]);
3405        };        };
3406        ftof21y[j] = new TPolyLine(5,nxc,nyc);        ftof21y[j] = new TPolyLine(5,nxc,nyc);
3407        ftof21y[j]->SetLineColor(1);        ftof21y[j]->SetLineColor(1);
# Line 2619  void FEVdetector::ShowTOF(){ Line 3411  void FEVdetector::ShowTOF(){
3411          colo = 1;          colo = 1;
3412        };        };
3413        if ( level.file == -1 ){        if ( level.file == -1 ){
3414          ColorMIP(ms21a[j]+ms21b[j],colo);          ColorMIP(ms21a[rj]+ms21b[rj],colo);
3415        } else {        } else {
3416          ColorTOFMIP(ms21a[j]+ms21b[j],colo);          ColorTOFMIP((ms21a[rj]+ms21b[rj])/2.,colo);
3417        };        };
3418        //        //
3419        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 2707  void FEVdetector::ShowTOF(){ Line 3499  void FEVdetector::ShowTOF(){
3499        if ( level.file == -1 ){        if ( level.file == -1 ){
3500          ColorMIP(ms22a[j]+ms22b[j],colo);          ColorMIP(ms22a[j]+ms22b[j],colo);
3501        } else {        } else {
3502          ColorTOFMIP(ms22a[j]+ms22b[j],colo);          ColorTOFMIP((ms22a[j]+ms22b[j])/2.,colo);
3503        };        };
3504        //        //
3505        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 2738  void FEVdetector::ShowTOF(){ Line 3530  void FEVdetector::ShowTOF(){
3530        ftof22y->Draw();        ftof22y->Draw();
3531        TPolyLine *sftof22[2];        TPolyLine *sftof22[2];
3532        tt = 1;        tt = 1;
3533        if ( level.file == -1 ) tt = 2;        rj = 1;
3534          if ( level.file == -1 ){
3535            tt = 2;
3536            rj = 2;
3537          };
3538        for (Int_t j=0; j<tt; j++){        for (Int_t j=0; j<tt; j++){
3539            rj--;
3540          //    for ( Int_t j=0; j<2; j++){          //    for ( Int_t j=0; j<2; j++){
3541          if ( (mt22[0][j]<4095. || mt22[1][j]<4095.) ){          if ( (mt22[0][rj]<4095. || mt22[1][rj]<4095.) ){
3542            if ( ocolo == 10 ) ocolo = noadc;            if ( ocolo == 10 ) ocolo = noadc;
3543            Float_t lowp = (xp22[j]-E22[j])/100.;            Float_t lowp = -(xp22[rj]+E22[rj])/100.;
3544            Float_t higp = (xp22[j]+E22[j])/100.;            Float_t higp = -(xp22[rj]-E22[rj])/100.;
3545            if ( lowp < -0.074 ) lowp = -0.074;            if ( lowp < -0.074 ) lowp = -0.074;
3546            if ( higp > 0.074 ) higp = 0.074;            if ( higp > 0.074 ) higp = 0.074;
3547            if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp22[j] != 0.))){            if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp22[rj] != 0.))){
3548              Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};              Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};
3549              Float_t nyc1[5]={ -0.0015,         -0.0015,                -ws2+0.0015,    -ws2+0.0015,    -0.0015};              Float_t nyc1[5]={ -0.0015,         -0.0015,                -ws2+0.0015,    -ws2+0.0015,    -0.0015};
3550              Float_t nxc[5];                  Float_t nxc[5];    
# Line 2767  void FEVdetector::ShowTOF(){ Line 3564  void FEVdetector::ShowTOF(){
3564        };        };
3565      };      };
3566      //      //
3567        //daquiinbasso
3568      //      //
3569      // S31  X-view      // S31  X-view
3570      //      //
# Line 2793  void FEVdetector::ShowTOF(){ Line 3590  void FEVdetector::ShowTOF(){
3590        if ( level.file == -1 ){        if ( level.file == -1 ){
3591          ColorMIP(ms31a[j]+ms31b[j],colo);          ColorMIP(ms31a[j]+ms31b[j],colo);
3592        } else {        } else {
3593          ColorTOFMIP(ms31a[j]+ms31b[j],colo);          ColorTOFMIP((ms31a[j]+ms31b[j])/2.,colo);
3594        };        };
3595        //        //
3596        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 2824  void FEVdetector::ShowTOF(){ Line 3621  void FEVdetector::ShowTOF(){
3621        ftof31y->Draw();        ftof31y->Draw();
3622        TPolyLine *sftof31[3];        TPolyLine *sftof31[3];
3623        tt = 1;        tt = 1;
3624        if ( level.file == -1 ) tt = 3;        rj = 1;
3625          if ( level.file == -1 ){
3626            tt = 3;
3627            rj = 3;
3628          };
3629        for (Int_t j=0; j<tt; j++){        for (Int_t j=0; j<tt; j++){
3630            rj--;
3631          //    for ( Int_t j=0; j<3; j++){          //    for ( Int_t j=0; j<3; j++){
3632          if ( (mt31[0][j]<4095. || mt31[1][j]<4095.)){          if ( (mt31[0][rj]<4095. || mt31[1][rj]<4095.)){
3633            if ( ocolo == 10 ) ocolo = noadc;            if ( ocolo == 10 ) ocolo = noadc;
3634            Float_t lowp = (xp31[j]-E31[j])/100.;            Float_t lowp = -(xp31[rj]+E31[rj])/100.;
3635            Float_t higp = (xp31[j]+E31[j])/100.;            Float_t higp = -(xp31[rj]-E31[rj])/100.;
3636            if ( lowp < -0.074 ) lowp = -0.074;            if ( lowp < -0.074 ) lowp = -0.074;
3637            if ( higp > 0.074 ) higp = 0.074;            if ( higp > 0.074 ) higp = 0.074;
3638            if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp31[j] != 0.))){            if ( lowp < higp && ( level.file == -1 || (level.file == 2 && xp31[rj] != 0.))){
3639              Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};              Float_t nxc1[5]={ lowp, higp, higp, lowp, lowp};
3640              Float_t nyc1[5]={ 0.0015,         0.0015,                ws13-0.0015,    ws13-0.0015,    0.0015};              Float_t nyc1[5]={ 0.0015,         0.0015,                ws13-0.0015,    ws13-0.0015,    0.0015};
3641              Float_t nxc[5];                  Float_t nxc[5];    
# Line 2860  void FEVdetector::ShowTOF(){ Line 3662  void FEVdetector::ShowTOF(){
3662      Float_t s32p = 0.050;      Float_t s32p = 0.050;
3663      ocolo = 10;      ocolo = 10;
3664      TPolyLine *ftof32y[3];      TPolyLine *ftof32y[3];
3665        rj = 3;
3666      for ( Int_t j=0; j<3; j++){      for ( Int_t j=0; j<3; j++){
3667          rj--;
3668        Float_t nxc1[5]={ (s32p*j),       (s32p*j),               s32p*(j+1),s32p*(j+1),     (s32p*j)};        Float_t nxc1[5]={ (s32p*j),       (s32p*j),               s32p*(j+1),s32p*(j+1),     (s32p*j)};
3669        Float_t nyc1[5]={     -ws13,     0.,    0., -ws13, -ws13};        Float_t nyc1[5]={     -ws13,     0.,    0., -ws13, -ws13};
3670        Float_t nxc[5];            Float_t nxc[5];    
# Line 2877  void FEVdetector::ShowTOF(){ Line 3681  void FEVdetector::ShowTOF(){
3681          colo = 1;          colo = 1;
3682        };        };
3683        if ( level.file == -1 ){        if ( level.file == -1 ){
3684          ColorMIP(ms32a[j]+ms32b[j],colo);          ColorMIP(ms32a[rj]+ms32b[rj],colo);
3685        } else {        } else {
3686          ColorTOFMIP(ms32a[j]+ms32b[j],colo);          ColorTOFMIP((ms32a[rj]+ms32b[rj])/2.,colo);
3687        };        };
3688        //        //
3689        if ( colo != 10 ) ocolo = colo;        if ( colo != 10 ) ocolo = colo;
# Line 3846  void FEVdetector::ShowAC(){ Line 4650  void FEVdetector::ShowAC(){
4650      pcasp4b->Draw("f");      pcasp4b->Draw("f");
4651      pcasp4b->Draw();      pcasp4b->Draw();
4652    };    };
4653    Float_t alfa = 1.2020334;    //  Float_t alfax = 1.2020334;
4654      Float_t alfax = 1.22157778;
4655      Float_t alfay = 1.27393111;
4656    Float_t lcrd = 0.1815/2.;    Float_t lcrd = 0.1815/2.;
4657    Float_t wcrd = 0.008;    Float_t wcrd = 0.008;
4658    if ( true ){    if ( true ){
# Line 4057  void FEVdetector::ShowAC(){ Line 4863  void FEVdetector::ShowAC(){
4863      //      //
4864      //    Float_t cardcx = 0.143168*var.sfx;      //    Float_t cardcx = 0.143168*var.sfx;
4865      //Float_t cardcy = 0.1475*var.sfy;      //Float_t cardcy = 0.1475*var.sfy;
4866      Float_t cardcx = 0.153168*var.sfx;      //
4867      Float_t cardcy = 0.1575*var.sfy;      //    Float_t cardcx = 0.153168*var.sfx;
4868      Float_t acrdx[4] = {-lcrd*cos(alfa), lcrd*cos(alfa), -lcrd*cos(alfa)+wcrd*sin(alfa), -lcrd*cos(alfa)};      //
4869      Float_t acrdy[4] = {-lcrd*sin(alfa), lcrd*sin(alfa), -lcrd*sin(alfa)-wcrd*cos(alfa), -lcrd*sin(alfa)};      Float_t cardcx = (0.19123*(1.-lcrd*cos(alfax)))*var.sfx;
4870      Float_t bcrdx[4] = { lcrd*cos(alfa), lcrd*cos(alfa)+wcrd*sin(alfa), -lcrd*cos(alfa)+wcrd*sin(alfa), lcrd*cos(alfa)};      //    Float_t cardcy = 0.1575*var.sfy;
4871      Float_t bcrdy[4] = { lcrd*sin(alfa), lcrd*sin(alfa)-wcrd*cos(alfa), -lcrd*sin(alfa)-wcrd*cos(alfa), lcrd*sin(alfa)};      Float_t cardcy = (0.179212*(1.-lcrd*sin(alfax)))*var.sfy;
4872        Float_t acrdx[4] = {-lcrd*cos(alfax), lcrd*cos(alfax), -lcrd*cos(alfax)+wcrd*sin(alfax), -lcrd*cos(alfax)};
4873        Float_t acrdy[4] = {-lcrd*sin(alfax), lcrd*sin(alfax), -lcrd*sin(alfax)-wcrd*cos(alfax), -lcrd*sin(alfax)};
4874        Float_t bcrdx[4] = { lcrd*cos(alfax), lcrd*cos(alfax)+wcrd*sin(alfax), -lcrd*cos(alfax)+wcrd*sin(alfax), lcrd*cos(alfax)};
4875        Float_t bcrdy[4] = { lcrd*sin(alfax), lcrd*sin(alfax)-wcrd*cos(alfax), -lcrd*sin(alfax)-wcrd*cos(alfax), lcrd*sin(alfax)};
4876    
4877      //      //
4878      // CARD3  X/  Y      // CARD3  X/  Y
# Line 4122  void FEVdetector::ShowAC(){ Line 4932  void FEVdetector::ShowAC(){
4932    };    };
4933    
4934    if ( true ){    if ( true ){
4935      Float_t acrdx[4] = {-lcrd*cos(alfa), lcrd*cos(alfa), -lcrd*cos(alfa)+wcrd*sin(alfa), -lcrd*cos(alfa)};      Float_t acrdx[4] = {-lcrd*cos(alfay), lcrd*cos(alfay), -lcrd*cos(alfay)+wcrd*sin(alfay), -lcrd*cos(alfay)};
4936      Float_t acrdy[4] = {-lcrd*sin(alfa), lcrd*sin(alfa), -lcrd*sin(alfa)-wcrd*cos(alfa), -lcrd*sin(alfa)};      Float_t acrdy[4] = {-lcrd*sin(alfay), lcrd*sin(alfay), -lcrd*sin(alfay)-wcrd*cos(alfay), -lcrd*sin(alfay)};
4937      Float_t bcrdx[4] = { lcrd*cos(alfa), lcrd*cos(alfa)+wcrd*sin(alfa), -lcrd*cos(alfa)+wcrd*sin(alfa), lcrd*cos(alfa)};      Float_t bcrdx[4] = { lcrd*cos(alfay), lcrd*cos(alfay)+wcrd*sin(alfay), -lcrd*cos(alfay)+wcrd*sin(alfay), lcrd*cos(alfay)};
4938      Float_t bcrdy[4] = { lcrd*sin(alfa), lcrd*sin(alfa)-wcrd*cos(alfa), -lcrd*sin(alfa)-wcrd*cos(alfa), lcrd*sin(alfa)};      Float_t bcrdy[4] = { lcrd*sin(alfay), lcrd*sin(alfay)-wcrd*cos(alfay), -lcrd*sin(alfay)-wcrd*cos(alfay), lcrd*sin(alfay)};
4939      //      //
4940      // CARD - Y-view      // CARD - Y-view
4941      //      //
4942      Float_t cardcx = 0.12*var.sfx;      //    Float_t cardcx = 0.12*var.sfx;
4943      Float_t cardcy = 0.1475*var.sfy;      Float_t cardcx = (0.16014*(1.-lcrd*cos(alfay)))*var.sfx;
4944        //    Float_t cardcy = 0.178818*var.sfy;
4945        Float_t cardcy = (0.178818*(1.-lcrd*sin(alfay)))*var.sfy;
4946        //    Float_t cardcy = 0.1475*var.sfy;
4947      //      //
4948      // CARD4  X  Y/      // CARD4  X  Y/
4949      //      //
# Line 4584  void FEVdetector::ShowTRK(Bool_t upd){ Line 5397  void FEVdetector::ShowTRK(Bool_t upd){
5397            for (Int_t m = 0; m<3; m++){            for (Int_t m = 0; m<3; m++){
5398              if ( trk->signcluster[l][m] != 0. ){              if ( trk->signcluster[l][m] != 0. ){
5399                if ( planeno == 10 ) {                if ( planeno == 10 ) {
                 x = 1024 - trk->addrcluster[l][m];  
               } else {  
5400                  x = trk->addrcluster[l][m];                  x = trk->addrcluster[l][m];
5401                  } else {
5402                    x = 1024 - trk->addrcluster[l][m];
5403                };                };
5404                linea = new TLine(14.+x,0.01,14.+x,0.3);                linea = new TLine(14.+x,0.01,14.+x,0.3);
5405                linea->SetLineWidth(2);                linea->SetLineWidth(2);
# Line 4656  void FEVdetector::ShowTRK(Bool_t upd){ Line 5469  void FEVdetector::ShowTRK(Bool_t upd){
5469          trkpad[planepad]->cd();          trkpad[planepad]->cd();
5470          trkpad[planepad]->Range(-7.05,0.,7.05,8.);          trkpad[planepad]->Range(-7.05,0.,7.05,8.);
5471          for (Int_t img=0; img<2; img++){          for (Int_t img=0; img<2; img++){
5472            x = singlet->coord[img];            x = -singlet->coord[img];
5473            Float_t xsig = singlet->sgnl;            Float_t xsig = singlet->sgnl;
5474            if ( xsig > 8. ) xsig = 8.;            if ( xsig > 8. ) xsig = 8.;
5475            //            //
# Line 4712  void FEVdetector::ShowTRK(Bool_t upd){ Line 5525  void FEVdetector::ShowTRK(Bool_t upd){
5525              trkpad[planepad]->Range(-8.1,0.,8.1,8.);              trkpad[planepad]->Range(-8.1,0.,8.1,8.);
5526              //              //
5527              x = track->xm[plane];              x = track->xm[plane];
5528              Float_t xsig = track->dedx_x[plane];              Float_t xsig = fabs(track->dedx_x[plane]);
5529              if ( track->xgood[plane] ){              if ( track->XGood(plane) ){
5530                //if ( x > -100 ){                //if ( x > -100 ){
5531                if ( xsig > 8. ) xsig = 8.;                if ( xsig > 8. ) xsig = 8.;
5532                if ( var.bw ){                if ( var.bw ){
# Line 4721  void FEVdetector::ShowTRK(Bool_t upd){ Line 5534  void FEVdetector::ShowTRK(Bool_t upd){
5534                } else {                } else {
5535                  sigcol2 = 1;                  sigcol2 = 1;
5536                };                };
5537                ColorTRKMIP(track->dedx_x[plane],sigcol2,0);                ColorTRKMIP(fabs(track->dedx_x[plane]),sigcol2,0);
5538                linea = new TLine(x,0.01,x,xsig);                linea = new TLine(x,0.01,x,xsig);
5539                linea->SetLineWidth(2);                linea->SetLineWidth(2);
5540                linea->SetLineColor(sigcol2);                linea->SetLineColor(sigcol2);
# Line 4741  void FEVdetector::ShowTRK(Bool_t upd){ Line 5554  void FEVdetector::ShowTRK(Bool_t upd){
5554              planepad = plane * 2;              planepad = plane * 2;
5555              trkpad[planepad]->cd();              trkpad[planepad]->cd();
5556              trkpad[planepad]->Range(-7.05,0.,7.05,8.);              trkpad[planepad]->Range(-7.05,0.,7.05,8.);
5557              x = track->ym[plane];              x = -track->ym[plane];
5558              xsig = track->dedx_y[plane];              xsig = fabs(track->dedx_y[plane]);
5559              if ( track->ygood[plane] ){              if ( track->YGood(plane) ){
5560                //            if ( x > -100 ){                //            if ( x > -100 ){
5561                if ( xsig > 8. ) xsig = 8.;                if ( xsig > 8. ) xsig = 8.;
5562                if ( var.bw ){                if ( var.bw ){
# Line 4751  void FEVdetector::ShowTRK(Bool_t upd){ Line 5564  void FEVdetector::ShowTRK(Bool_t upd){
5564                } else {                } else {
5565                  sigcol2 = 1;                  sigcol2 = 1;
5566                };                };
5567                ColorTRKMIP(track->dedx_y[plane],sigcol2,0);                ColorTRKMIP(fabs(track->dedx_y[plane]),sigcol2,0);
5568                linea = new TLine(x,0.01,x,xsig);                linea = new TLine(x,0.01,x,xsig);
5569                linea->SetLineWidth(2);                linea->SetLineWidth(2);
5570                linea->SetLineColor(sigcol2);                linea->SetLineColor(sigcol2);
# Line 4794  void FEVdetector::ShowTRK(Bool_t upd){ Line 5607  void FEVdetector::ShowTRK(Bool_t upd){
5607        // first of all plot crosses relatives to tracks        // first of all plot crosses relatives to tracks
5608        //        //
5609        if ( L2->GetTrkLevel2()->GetNTracks() > 0 ){        if ( L2->GetTrkLevel2()->GetNTracks() > 0 ){
5610    //      for (Int_t nt = 0; nt < L2->GetTrkLevel2()->GetNTracks(); nt++){
5611    //        TrkTrack *track = L2->GetTrkLevel2()->GetTrack(nt);  
5612          for (Int_t nt = 0; nt < L2->GetTrkLevel2()->GetNTracks(); nt++){          for (Int_t nt = 0; nt < L2->GetTrkLevel2()->GetNTracks(); nt++){
5613            TrkTrack *track = L2->GetTrkLevel2()->GetTrack(nt);              PamTrack *ptrack= L2->GetTrack(nt);
5614              TrkTrack *track = ptrack->GetTrkTrack();  
5615              //
5616            for (Int_t plane = 0; plane<6; plane++){            for (Int_t plane = 0; plane<6; plane++){
5617              //              //
5618              x = track->xm[plane];              x = track->xm[plane];
5619              Float_t y = track->ym[plane];              Float_t y = -track->ym[plane];
5620              Float_t xsig = track->dedx_x[plane];              Float_t xsig = fabs(track->dedx_x[plane]);
5621              Float_t ysig = track->dedx_y[plane];              Float_t ysig = fabs(track->dedx_y[plane]);
5622              //    if ( x > -100 && y > -100. ){              //    if ( x > -100 && y > -100. ){
5623              if ( track->xgood[plane] && track->ygood[plane] ){              if ( track->XGood(plane) && track->YGood(plane) ){
5624                if ( var.bw ){                if ( var.bw ){
5625                  sigcol1 = -1;                  sigcol1 = -1;
5626                  sigcol2 = -1;                  sigcol2 = -1;
# Line 4921  void FEVdetector::ShowTRK(Bool_t upd){ Line 5738  void FEVdetector::ShowTRK(Bool_t upd){
5738              for (Int_t sing = 0; sing < min(totsx,totsy); sing++){              for (Int_t sing = 0; sing < min(totsx,totsy); sing++){
5739                //                              //              
5740                x = arrax->At(orderx->At(sing));                x = arrax->At(orderx->At(sing));
5741                Float_t y1 = array1->At(ordery->At(sing));                Float_t y1 = -array1->At(ordery->At(sing));
5742                Float_t y2 = array2->At(ordery->At(sing));                Float_t y2 = -array2->At(ordery->At(sing));
5743                Float_t xsig = sigarrax->At(orderx->At(sing));                Float_t xsig = sigarrax->At(orderx->At(sing));
5744                Float_t ysig = sigarray->At(ordery->At(sing));                Float_t ysig = sigarray->At(ordery->At(sing));
5745                if ( x > -100 && y1 > -100. ){                if ( x > -100 && y1 > -100. ){
# Line 5015  void FEVdetector::ShowTRK(Bool_t upd){ Line 5832  void FEVdetector::ShowTRK(Bool_t upd){
5832                  for (Int_t m = 0; m<3; m++){                                          for (Int_t m = 0; m<3; m++){                        
5833                    if ( trk->signcluster[l][m] != 0. ){                    if ( trk->signcluster[l][m] != 0. ){
5834                      if ( planeno == 10 ) {                      if ( planeno == 10 ) {
                       x = 1024 - trk->addrcluster[l][m];  
                     } else {  
5835                        x = trk->addrcluster[l][m];                        x = trk->addrcluster[l][m];
5836                        } else {
5837                          x = 1024 - trk->addrcluster[l][m];
5838                      };                      };
5839                      x += 1024.;                                      x += 1024.;                
5840                      if ( trk->signcluster[l][m]> ysig  ){                      if ( trk->signcluster[l][m]> ysig  ){
5841                        ysig = trk->signcluster[l][m];                        ysig = trk->signcluster[l][m];
5842                        yh1[ncro] = x-1024.;                        yh1[ncro] = x - 1024.;
5843                        yh2[ncro] = x;                        yh2[ncro] = x;
5844                      };                      };
5845                    };                    };
# Line 5050  void FEVdetector::ShowTRK(Bool_t upd){ Line 5867  void FEVdetector::ShowTRK(Bool_t upd){
5867                    for (Int_t m = 0; m<3; m++){                    for (Int_t m = 0; m<3; m++){
5868                      if ( trk->signcluster[e][m] != 0. ){                      if ( trk->signcluster[e][m] != 0. ){
5869                        if ( planeno == 10 ) {                        if ( planeno == 10 ) {
                         x = 1024 - trk->addrcluster[e][m];  
                       } else {  
5870                          x = trk->addrcluster[e][m];                          x = trk->addrcluster[e][m];
5871                          } else {
5872                            x = 1024 - trk->addrcluster[e][m];
5873                        };                        };
5874                        x += 1024.;                                              x += 1024.;                      
5875                        if ( trk->signcluster[e][m]> ysig  ){                        if ( trk->signcluster[e][m]> ysig  ){
5876                          ysig = trk->signcluster[e][m];                          ysig = trk->signcluster[e][m];
5877                          yh1[ncro] = x-1024.;                          yh1[ncro] = x - 1024.;
5878                          yh2[ncro] = x;                          yh2[ncro] = x;
5879                        };                        };
5880                      };                      };
# Line 5109  void FEVdetector::ShowTRK(Bool_t upd){ Line 5926  void FEVdetector::ShowTRK(Bool_t upd){
5926    
5927  void FEVdetector::ShowTrack(){  void FEVdetector::ShowTrack(){
5928    //    //
5929      if ( level.file != 2 ) return;
5930    //    //
5931    //    //
5932    if ( var.CALO && false ){    //
5933      if ( var.CALO && var.CALOT ){
5934      if ( L2->GetCaloLevel2()->npcfit[0] > 0 && L2->GetCaloLevel2()->npcfit[1] > 0 ){      if ( L2->GetCaloLevel2()->npcfit[0] > 0 && L2->GetCaloLevel2()->npcfit[1] > 0 ){
5935        Float_t calx[22];        Float_t calx[22];
5936        Float_t caly[22];        Float_t caly[22];
# Line 5128  void FEVdetector::ShowTrack(){ Line 5947  void FEVdetector::ShowTrack(){
5947        };        };
5948        for (Int_t plane = 0; plane < 22; plane++){              for (Int_t plane = 0; plane < 22; plane++){      
5949          calx[plane] = (L2->GetCaloLevel2()->cbar[plane][0]/100.)*var.sfx + var.xxvc;;          calx[plane] = (L2->GetCaloLevel2()->cbar[plane][0]/100.)*var.sfx + var.xxvc;;
5950          caly[plane] = (L2->GetCaloLevel2()->cbar[plane][1]/100.)*var.sfx + var.xyvc;          caly[plane] = (-L2->GetCaloLevel2()->cbar[plane][1]/100.)*var.sfx + var.xyvc;
5951          //      calzx[plane] = zpiano[plane] -5.81*var.sfy/1000. + var.yxvc;          //      calzx[plane] = zpiano[plane] -5.81*var.sfy/1000. + var.yxvc;
5952          calzx[plane] = zpiano[plane] + var.yxvc;          calzx[plane] = zpiano[plane] + var.yxvc;
5953          calzy[plane] = zpiano[plane] + var.yyvc;          calzy[plane] = zpiano[plane] + var.yyvc;
# Line 5177  void FEVdetector::ShowTrack(){ Line 5996  void FEVdetector::ShowTrack(){
5996        //        //
5997        for (Int_t plane = 0; plane < 22; plane++){              for (Int_t plane = 0; plane < 22; plane++){      
5998          calx[plane] = (ctra->tbar[plane][0]/100.)*var.sfx + var.xxvc;;          calx[plane] = (ctra->tbar[plane][0]/100.)*var.sfx + var.xxvc;;
5999          caly[plane] = (ctra->tbar[plane][1]/100.)*var.sfx + var.xyvc;          caly[plane] = (-ctra->tbar[plane][1]/100.)*var.sfx + var.xyvc;
6000          //      calzx[plane] = zpiano[plane] -5.81*var.sfy/1000. + var.yxvc;          //      calzx[plane] = zpiano[plane] -5.81*var.sfy/1000. + var.yxvc;
6001          calzx[plane] = zpiano[plane] + var.yxvc;          calzx[plane] = zpiano[plane] + var.yxvc;
6002          calzy[plane] = zpiano[plane] + var.yyvc;          calzy[plane] = zpiano[plane] + var.yyvc;
# Line 5206  void FEVdetector::ShowTrack(){ Line 6025  void FEVdetector::ShowTrack(){
6025      };      };
6026    };    };
6027    //    //
6028    if ( !var.TRK || level.file != 2 ) return;    if ( !var.TRK ) return;
6029    //    //
6030    if ( L2->GetTrkLevel2()->GetNTracks() > 0 ){    if ( L2->GetTrkLevel2()->GetNTracks() > 0 ){
6031      for (Int_t nt = 0; nt < L2->GetTrkLevel2()->GetNTracks(); nt++){      for (Int_t nt = 0; nt < L2->GetTrkLevel2()->GetNTracks(); nt++){
6032    
6033        //      TrkTrack *track = L2->GetTrkLevel2()->GetTrack(nt);        //      TrkTrack *track = L2->GetTrkLevel2()->GetTrack(nt);
6034          //      printf("qui \n");
6035        PamTrack *ptrack = L2->GetTrack(nt);        PamTrack *ptrack = L2->GetTrack(nt);
6036        TrkTrack *track = ptrack->GetTrkTrack();        TrkTrack *track = ptrack->GetTrkTrack();
6037          //      printf("qua \n");
6038        Int_t npoint = 100;        Int_t npoint = 100;
6039        Float_t zin[100];        Float_t zin[100];
6040        Double_t xout[100];        Double_t xout[100];
# Line 5262  void FEVdetector::ShowTrack(){ Line 6083  void FEVdetector::ShowTrack(){
6083        //        //
6084        Trajectory *tr = new Trajectory(npoint,zin);                                      Trajectory *tr = new Trajectory(npoint,zin);                              
6085        //        //
6086        ifail = track->DoTrack2(tr);        //      ifail = track->DoTrack2(tr);
6087          ifail = track->DoTrack(tr);
6088        //        //
6089        if ( !ifail ){        if ( !ifail ){
6090          for ( Int_t e = 0; e < npoint ; e++) {          for ( Int_t e = 0; e < npoint ; e++) {
6091            tx[e] = ((float)tr->x[e]/100.)*var.sfx + var.xxvc;            tx[e] = ((float)tr->x[e]/100.)*var.sfx + var.xxvc;
6092            ty[e] = ((float)tr->y[e]/100.)*var.sfx + var.xyvc;            ty[e] = (-(float)tr->y[e]/100.)*var.sfx + var.xyvc;
6093            if ( e < 50 ) {            if ( e < 50 ) {
6094              ptx1[e] = ((float)tr->y[e]/100.)*var.sfx + var.xcat;              ptx1[e] = (-(float)tr->y[e]/100.)*var.sfx + var.xcat;
6095              pty1[e] = ((float)tr->x[e]/100.)*var.sfy + var.ycat;              pty1[e] = ((float)tr->x[e]/100.)*var.sfy + var.ycat;
6096            } else {            } else {
6097              ptx2[e-50] = ((float)tr->y[e]/100.)*var.sfx + var.xcat;              ptx2[e-50] = (-(float)tr->y[e]/100.)*var.sfx + var.xcat;
6098              pty2[e-50] = ((float)tr->x[e]/100.)*var.sfy + var.ycat;              pty2[e-50] = ((float)tr->x[e]/100.)*var.sfy + var.ycat;
6099            };            };
6100            if ( e > 84 ) {            if ( e > 84 ) {
6101              tx1[e-85] = ((float)tr->x[e]/100.)*var.nds4 + var.xxvc;              tx1[e-85] = ((float)tr->x[e]/100.)*var.nds4 + var.xxvc;
6102              ty1[e-85] = ((float)tr->y[e]/100.)*var.nds4 + var.xyvc;                  ty1[e-85] = (-(float)tr->y[e]/100.)*var.nds4 + var.xyvc;    
6103              tzx1[e-85] = (0.112)*var.sfy+((float)zin[e]/100.)*var.sfy + var.yxvc;              tzx1[e-85] = (0.112)*var.sfy+((float)zin[e]/100.)*var.sfy + var.yxvc;
6104              tzy1[e-85] = (0.112)*var.sfy+((float)zin[e]/100.)*var.sfy + var.yyvc;              tzy1[e-85] = (0.112)*var.sfy+((float)zin[e]/100.)*var.sfy + var.yyvc;
6105            };            };
# Line 5421  void FEVdetector::ShowCalo(Bool_t upd){ Line 6243  void FEVdetector::ShowCalo(Bool_t upd){
6243          Int_t se = 5;          Int_t se = 5;
6244          if ( !l && m%2 == 0 ) se = 3;          if ( !l && m%2 == 0 ) se = 3;
6245          if ( !l && m%2 != 0 ) se = 2;          if ( !l && m%2 != 0 ) se = 2;
6246          if (  l && m%2 == 0 ) se = 1;          if (  l && m%2 != 0 ) se = 1;
6247          if (  l && m%2 != 0 ) se = 0;          if (  l && m%2 == 0 ) se = 0;
6248          //          //
6249          // determine what kind of event we are going to analyze          // determine what kind of event we are going to analyze
6250          //          //
# Line 5517  void FEVdetector::ShowCalo(Bool_t upd){ Line 6339  void FEVdetector::ShowCalo(Bool_t upd){
6339                Xview->Draw("box same");                Xview->Draw("box same");
6340              };                                            };                              
6341              if ( l == 1 ) {                                      if ( l == 1 ) {                        
6342                Yview->Fill(n,21-m,1.);                Yview->Fill(95-n,21-m,1.);
6343                pd2->cd();                pd2->cd();
6344                Yview->Draw("box same");                Yview->Draw("box same");
6345              };              };
# Line 5537  void FEVdetector::ShowCalo(Bool_t upd){ Line 6359  void FEVdetector::ShowCalo(Bool_t upd){
6359      //      //
6360      // Define variables      // Define variables
6361      //      //
6362      Int_t etime = var.etime;      UInt_t etime = var.etime;
6363      Float_t estrip[2][22][96], ener, basel,sdexy[2][22][96],sdexyc[2][22][96];      Float_t estrip[2][22][96], ener, basel,sdexy[2][22][96],sdexyc[2][22][96];
6364      Int_t badstrip = 0;      Int_t badstrip = 0;
6365      qtot = 0.;      qtot = 0.;
# Line 5609  void FEVdetector::ShowCalo(Bool_t upd){ Line 6431  void FEVdetector::ShowCalo(Bool_t upd){
6431        if ( calib.ttime[s][b[s]+1] && calib.time[s][b[s]] ){        if ( calib.ttime[s][b[s]+1] && calib.time[s][b[s]] ){
6432          while ( etime > calib.time[s][b[s]] && calib.time[s][b[s]] != 0 ){                                        while ( etime > calib.time[s][b[s]] && calib.time[s][b[s]] != 0 ){                              
6433            printf(" CALORIMETER: \n" );            printf(" CALORIMETER: \n" );
6434            printf(" - Section %i, event at time %i while old calibration time limit at %i. Use new calibration at time %i -\n",s,etime,calib.time[s][b[s]],calib.ttime[s][b[s]+1]);            printf(" - Section %i, event at time %u while old calibration time limit at %u. Use new calibration at time %u -\n",s,(UInt_t)etime,(UInt_t)calib.time[s][b[s]],(UInt_t)calib.ttime[s][b[s]+1]);
6435            printf(" END CALORIMETER. \n\n" );            printf(" END CALORIMETER. \n\n" );
6436            b[s]++;            b[s]++;
6437            CaloPede(s);            CaloPede(s);
# Line 5629  void FEVdetector::ShowCalo(Bool_t upd){ Line 6451  void FEVdetector::ShowCalo(Bool_t upd){
6451          Int_t se = 5;          Int_t se = 5;
6452          if (l == 0 && m%2 == 0) se = 3;          if (l == 0 && m%2 == 0) se = 3;
6453          if (l == 0 && m%2 != 0) se = 2;          if (l == 0 && m%2 != 0) se = 2;
6454          if (l == 1 && m%2 == 0) se = 1;          if (l == 1 && m%2 != 0) se = 1;
6455          if (l == 1 && m%2 != 0) se = 0;                  if (l == 1 && m%2 == 0) se = 0;        
6456          //          //
6457          // determine what kind of event we are going to analyze          // determine what kind of event we are going to analyze
6458          //          //
# Line 5746  void FEVdetector::ShowCalo(Bool_t upd){ Line 6568  void FEVdetector::ShowCalo(Bool_t upd){
6568                    Xview->Draw("box same");                    Xview->Draw("box same");
6569                  };                                                    };                                  
6570                  if ( l == 1 ) {                                      if ( l == 1 ) {                    
6571                    Yview->Fill(n,21-m,1.);                    Yview->Fill(96-n,21-m,1.);
6572                    pd2->cd();                    pd2->cd();
6573                    Yview->Draw("box same");                    Yview->Draw("box same");
6574                  };                  };
# Line 5833  void FEVdetector::ShowCalo(Bool_t upd){ Line 6655  void FEVdetector::ShowCalo(Bool_t upd){
6655      //      //
6656      stringstream xvev;      stringstream xvev;
6657      stringstream yvev;          stringstream yvev;    
6658      for (Int_t ii = 0; ii < L2->GetCaloLevel2()->nstrip; ii++){      //    for (Int_t ii = 0; ii < L2->GetCaloLevel2()->nstrip; ii++){
6659        for (Int_t ii = 0; ii < L2->GetCaloLevel1()->istrip; ii++){
6660        Int_t colo;        Int_t colo;
6661        Int_t l;        Int_t l;
6662        Int_t m;        Int_t m;
6663        Int_t n;        Int_t n;
6664        Float_t mip = L2->GetCaloLevel1()->DecodeEstrip(ii,l,m,n);        Bool_t satura = false;
6665          Float_t mip = L2->GetCaloLevel1()->DecodeEstrip(ii,l,m,n,satura);
6666        if ( var.bw ){        if ( var.bw ){
6667          colo = -1;          colo = -1;
6668        } else {        } else {
6669          colo = 1;          colo = 1;
6670        };        };      
6671        ColorMIP(mip,colo);        ColorMIP(mip,colo);
6672        if ( l == 0 ) {        if ( l == 0 ) {
6673          xvev.str("");          xvev.str("");
# Line 5852  void FEVdetector::ShowCalo(Bool_t upd){ Line 6676  void FEVdetector::ShowCalo(Bool_t upd){
6676          xvev << " " << l;          xvev << " " << l;
6677          gDirectory->Delete(xvev.str().c_str());          gDirectory->Delete(xvev.str().c_str());
6678          TH2F *Xview = new TH2F(xvev.str().c_str(),"",96,-0.5,95.5,22,-0.5,21.5);          TH2F *Xview = new TH2F(xvev.str().c_str(),"",96,-0.5,95.5,22,-0.5,21.5);
6679          Xview->SetFillColor(colo);          if ( satura ){
6680              Xview->SetFillColor(kBlack);
6681            } else {
6682              Xview->SetFillColor(colo);
6683            };
6684          Xview->Fill(n,21-m,1.);          Xview->Fill(n,21-m,1.);
6685          pd1->cd();                                            pd1->cd();                                  
6686          Xview->Draw("box same");          Xview->Draw("box same");
# Line 5864  void FEVdetector::ShowCalo(Bool_t upd){ Line 6692  void FEVdetector::ShowCalo(Bool_t upd){
6692          yvev << " " << l;          yvev << " " << l;
6693          gDirectory->Delete(yvev.str().c_str());          gDirectory->Delete(yvev.str().c_str());
6694          TH2F *Yview = new TH2F(yvev.str().c_str(),"",96,-0.5,95.5,22,-0.5,21.5);                            TH2F *Yview = new TH2F(yvev.str().c_str(),"",96,-0.5,95.5,22,-0.5,21.5);                  
6695          Yview->SetFillColor(colo);          if ( satura ){
6696          Yview->Fill(n,21-m,1.);            Yview->SetFillColor(kBlack);
6697            } else {
6698              Yview->SetFillColor(colo);
6699            };
6700            Yview->Fill(96-n,21-m,1.);
6701          pd2->cd();          pd2->cd();
6702          Yview->Draw("box same");          Yview->Draw("box same");
6703        };        };
# Line 5914  void FEVdetector::Calo1stcalib(){ Line 6746  void FEVdetector::Calo1stcalib(){
6746      for (Int_t d = 0; d<48; d++){      for (Int_t d = 0; d<48; d++){
6747        if ( calib.ttime[s][d] != 0 ) calibex++;        if ( calib.ttime[s][d] != 0 ) calibex++;
6748        if ( calib.time[s][0] != 0 ){        if ( calib.time[s][0] != 0 ){
6749          if ( d == 0 )  printf(" Section %i from time 0 to time %i use calibration at time %i \n",s,calib.time[s][d],calib.ttime[s][d]);          if ( d == 0 )  printf(" Section %i from time 0 to time %u use calibration at time %u \n",s,calib.time[s][d],calib.ttime[s][d]);
6750          if ( calib.time[s][d+1] != 0 ) {          if ( calib.time[s][d+1] != 0 ) {
6751            printf(" Section %i from time %i to time %i use calibration at time %i \n",s,calib.time[s][d],calib.time[s][d+1],calib.ttime[s][d+1]);            printf(" Section %i from time %u to time %u use calibration at time %u \n",s,calib.time[s][d],calib.time[s][d+1],calib.ttime[s][d+1]);
6752          } else {          } else {
6753            if ( !stop ){            if ( !stop ){
6754              printf(" Section %i from time %i use calibration at time %i \n",s,calib.time[s][d],calib.ttime[s][d+1]);                          printf(" Section %i from time %u use calibration at time %u \n",s,calib.time[s][d],calib.ttime[s][d+1]);            
6755              stop = 1;              stop = 1;
6756            };            };
6757          };          };
6758        } else {        } else {
6759          if ( calib.ttime[s][d] != 0 ) printf(" Section %i from time 0 use calibration at time %i \n",s,calib.ttime[s][d]);          if ( calib.ttime[s][d] != 0 ) printf(" Section %i from time 0 use calibration at time %u \n",s,calib.ttime[s][d]);
6760        };        };
6761      };      };
6762      printf("\n");            printf("\n");      
# Line 5989  int FEVdetector::OLDCaloFindCalibs(){ Line 6821  int FEVdetector::OLDCaloFindCalibs(){
6821        calib.ttime[s][inter] = 0;        calib.ttime[s][inter] = 0;
6822        if ( ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {        if ( ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {
6823          //calib.ttime[s][inter] = cph->GetOrbitalTime();          //calib.ttime[s][inter] = cph->GetOrbitalTime();
6824          calib.ttime[s][inter] = cph->OrbitalTime;          calib.ttime[s][inter] = (UInt_t)cph->OrbitalTime;
6825          inter++;          inter++;
6826        } else {        } else {
6827          if ( ce->cstwerr[s] != 0 && ce->cperror[s] != 0 ) {          if ( ce->cstwerr[s] != 0 && ce->cperror[s] != 0 ) {
# Line 6043  int FEVdetector::CaloPede(Int_t s){ Line 6875  int FEVdetector::CaloPede(Int_t s){
6875      tr->GetEntry(ci);      tr->GetEntry(ci);
6876      cph = ceh->GetPscuHeader();                      cph = ceh->GetPscuHeader();                
6877      //if ( atime == cph->GetOrbitalTime()){      //if ( atime == cph->GetOrbitalTime()){
6878      if ( atime == cph->OrbitalTime){      if ( atime == (UInt_t)cph->OrbitalTime){
6879        //      calib.iev = ce->iev;        //      calib.iev = ce->iev;
6880        if (ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {        if (ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {
6881          for ( Int_t d=0 ; d<11 ;d++  ){          for ( Int_t d=0 ; d<11 ;d++  ){

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.36

  ViewVC Help
Powered by ViewVC 1.1.23