]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDetectorTagCuts.cxx
ITS cluster multiplicity and TPC standalone multiplicity in AODHeader
[u/mrichter/AliRoot.git] / STEER / AliDetectorTagCuts.cxx
CommitLineData
4dd405ae 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
22class AliLog;
23
24#include "AliDetectorTag.h"
25#include "AliDetectorTagCuts.h"
26
27#include "TObjString.h"
28#include "TString.h"
29
30ClassImp(AliDetectorTagCuts)
31
32//___________________________________________________________________________
33AliDetectorTagCuts::AliDetectorTagCuts() :
34 TObject(),
3ace8f92 35 fDetectorsReco(0),
8273eff5 36 fDetectorsDAQ(0),
04cb11d4 37 fDetectorsFlag(kFALSE),
38 fDetectorValidityMatch(),
39 fDetectorValidityFlag()
4dd405ae 40{
41 //Default constructor which calls the Reset method.
04cb11d4 42 for (int iter = 0; iter<AliDAQ::kHLTId; iter++) {
43 fDetectorValidityMatch[iter] = 0;
44 fDetectorValidityFlag[iter] = 0;
45 }
4dd405ae 46}
47
48//___________________________________________________________________________
49AliDetectorTagCuts::~AliDetectorTagCuts() {
50 //Defaut destructor.
51}
52
53//___________________________________________________________________________
54Bool_t AliDetectorTagCuts::IsAccepted(AliDetectorTag *detTag) const {
55 //Returns true if the event is accepted otherwise false.
3ace8f92 56 if (fDetectorsFlag) {
57 Bool_t daqsel = (detTag->GetIntDetectorMaskDAQ() & fDetectorsDAQ) > 0;
58 Bool_t recsel = (detTag->GetIntDetectorMaskReco() & fDetectorsReco) > 0;
04cb11d4 59 Bool_t valsel = kTRUE;
60 for (int iter=0; iter<AliDAQ::kHLTId; iter++) {
61 if (fDetectorValidityFlag[iter])
62 if (!(fDetectorValidityMatch[iter] == detTag->GetDetectorValidityRange(iter)))
63 valsel = kFALSE;
64 }
65 return (daqsel && recsel && valsel);
4dd405ae 66 }
3ace8f92 67 return true;
68
69// if(fDetectorsFlag){
70// TString detStr = fDetectors;
71// TObjArray *activeDetectors = detTag->GetDetectorMask();
72// for (Int_t iDet = 0; iDet < activeDetectors->GetEntries(); iDet++) {
73// TObjString *detectorString = (TObjString *)activeDetectors->At(iDet);
74// if (!IsSelected(detectorString->GetString(), detStr))return kFALSE;
75// }
76// }
77// return kTRUE;
4dd405ae 78}
04cb11d4 79
80void AliDetectorTagCuts::SetDetectorValidityValue(TString det, UShort_t val)
81{
82 // Set Validity requiement for detector
83
84 Short_t detid = AliDAQ::DetectorID(det.Data());
4b0dfb0c 85 if (detid >= 0) {
86 fDetectorValidityMatch[detid] = val;
87 fDetectorsFlag = kTRUE;
88 }
04cb11d4 89}
4dd405ae 90
91//___________________________________________________________________________
3ace8f92 92// Bool_t AliDetectorTagCuts::IsSelected(TString detName, TString& detectors) const {
93// //Returns true if the detector is included
94// if ((detectors.CompareTo("ALL") == 0) ||
95// detectors.BeginsWith("ALL ") ||
96// detectors.EndsWith(" ALL") ||
97// detectors.Contains(" ALL ")) {
98// detectors = "ALL";
99// return kTRUE;
100// }
4dd405ae 101
3ace8f92 102// // search for the given detector
103// Bool_t result = kFALSE;
104// if ((detectors.CompareTo(detName) == 0) ||
105// detectors.BeginsWith(detName+" ") ||
106// detectors.EndsWith(" "+detName) ||
107// detectors.Contains(" "+detName+" ")) {
108// detectors.ReplaceAll(detName, "");
109// result = kTRUE;
110// }
4dd405ae 111
3ace8f92 112// // clean up the detectors string
113// while (detectors.Contains(" ")) detectors.ReplaceAll(" ", " ");
114// while (detectors.BeginsWith(" ")) detectors.Remove(0, 1);
115// while (detectors.EndsWith(" ")) detectors.Remove(detectors.Length()-1, 1);
4dd405ae 116
3ace8f92 117// return result;
118// }