]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDetectorTagCuts.cxx
Trigger input names added to ESD (Plamen)
[u/mrichter/AliRoot.git] / STEER / AliDetectorTagCuts.cxx
1 /**************************************************************************
2  * Author: Panos Christakoglou.                                           *
3  * Contributors are mentioned in the code where appropriate.              *
4  *                                                                        *
5  * Permission to use, copy, modify and distribute this software and its   *
6  * documentation strictly for non-commercial purposes is hereby granted   *
7  * without fee, provided that the above copyright notice appears in all   *
8  * copies and that both the copyright notice and this permission notice   *
9  * appear in the supporting documentation. The authors make no claims     *
10  * about the suitability of this software for any purpose. It is          *
11  * provided "as is" without express or implied warranty.                  *
12  **************************************************************************/
13
14 /* $Id$ */
15
16 //-----------------------------------------------------------------
17 //                   AliDetectorTagCuts class
18 //   This is the class to deal with the Detector tag level cuts
19 //   Origin: Panos Christakoglou, UOA-CERN, Panos.Christakoglou@cern.ch
20 //-----------------------------------------------------------------
21
22 class AliLog;
23
24 #include "AliDetectorTag.h"
25 #include "AliDetectorTagCuts.h"
26
27 #include "TObjString.h"
28 #include "TString.h"
29
30 ClassImp(AliDetectorTagCuts)
31
32 //___________________________________________________________________________
33 AliDetectorTagCuts::AliDetectorTagCuts() :
34   TObject(),
35   fDetectors(0), 
36   fDetectorsFlag(kFALSE)
37 {
38   //Default constructor which calls the Reset method.
39 }
40
41 //___________________________________________________________________________
42 AliDetectorTagCuts::~AliDetectorTagCuts() {  
43   //Defaut destructor.
44 }
45
46 //___________________________________________________________________________
47 Bool_t AliDetectorTagCuts::IsAccepted(AliDetectorTag *detTag) const {
48   //Returns true if the event is accepted otherwise false.
49   if(fDetectorsFlag){
50     TString detStr = fDetectors;
51     TObjArray *activeDetectors = detTag->GetDetectorMask();
52     for (Int_t iDet = 0; iDet < activeDetectors->GetEntries(); iDet++) {
53       TObjString *detectorString = (TObjString *)activeDetectors->At(iDet);
54       if (!IsSelected(detectorString->GetString(), detStr))return kFALSE;
55     }
56   }
57   return kTRUE;
58 }
59
60 //___________________________________________________________________________
61 Bool_t AliDetectorTagCuts::IsSelected(TString detName, TString& detectors) const {
62   //Returns true if the detector is included
63   if ((detectors.CompareTo("ALL") == 0) ||
64       detectors.BeginsWith("ALL ") ||
65       detectors.EndsWith(" ALL") ||
66       detectors.Contains(" ALL ")) {
67     detectors = "ALL";
68     return kTRUE;
69   }
70   
71   // search for the given detector
72   Bool_t result = kFALSE;
73   if ((detectors.CompareTo(detName) == 0) ||
74       detectors.BeginsWith(detName+" ") ||
75       detectors.EndsWith(" "+detName) ||
76       detectors.Contains(" "+detName+" ")) {
77     detectors.ReplaceAll(detName, "");
78     result = kTRUE;
79   }
80
81   // clean up the detectors string
82   while (detectors.Contains("  ")) detectors.ReplaceAll("  ", " ");
83   while (detectors.BeginsWith(" ")) detectors.Remove(0, 1);
84   while (detectors.EndsWith(" ")) detectors.Remove(detectors.Length()-1, 1);
85  
86   return result;
87 }