66f72ab4 |
1 | /************************************************************************** |
2 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
3 | * * |
4 | * Author: The ALICE Off-line Project. * |
5 | * Contributors are mentioned in the code where appropriate. * |
6 | * * |
7 | * Permission to use, copy, modify and distribute this software and its * |
8 | * documentation strictly for non-commercial purposes is hereby granted * |
9 | * without fee, provided that the above copyright notice appears in all * |
10 | * copies and that both the copyright notice and this permission notice * |
11 | * appear in the supporting documentation. The authors make no claims * |
12 | * about the suitability of this software for any purpose. It is * |
13 | * provided "as is" without express or implied warranty. * |
14 | **************************************************************************/ |
15 | |
16 | /* $Id$ */ |
17 | |
18 | //_________________________________________________________________________ |
19 | // QA checker that compares a number with an average value plus or minus |
20 | // a width |
21 | //*-- Author : Yves Schutz (SUBATECH) |
22 | ////////////////////////////////////////////////////////////////////////////// |
23 | |
24 | // --- ROOT system --- |
25 | |
26 | #include "TDatime.h" |
27 | #include "TFolder.h" |
28 | |
29 | // --- Standard library --- |
30 | |
66f72ab4 |
31 | // --- AliRoot header files --- |
32 | |
33 | #include "AliPHOSQAMeanChecker.h" |
34 | #include "AliPHOSQAAlarm.h" |
35 | |
36 | ClassImp(AliPHOSQAMeanChecker) |
37 | |
38 | |
39 | //____________________________________________________________________________ |
40 | AliPHOSQAMeanChecker::AliPHOSQAMeanChecker(const char * name) : AliPHOSQAChecker(name,"") |
41 | { |
42 | // ctor |
43 | SetTitle("checks against average value +/- width") ; |
44 | } |
45 | |
46 | //____________________________________________________________________________ |
47 | AliPHOSQAMeanChecker::AliPHOSQAMeanChecker(const char * name, Float_t mean, Float_t rms) : AliPHOSQAChecker(name,"") |
48 | { |
49 | // ctor |
50 | SetTitle("checks against average value +/- width") ; |
51 | fMean = mean ; |
52 | fRms = rms ; |
53 | } |
54 | |
55 | //____________________________________________________________________________ |
56 | AliPHOSQAMeanChecker::~AliPHOSQAMeanChecker() |
57 | { |
58 | // dtor |
59 | } |
60 | |
61 | //____________________________________________________________________________ |
62 | TString AliPHOSQAMeanChecker::CheckingOperation() |
63 | { |
64 | // The user defined checking operation |
65 | // Return a non empty string in case the check was not satisfied |
66 | |
67 | TString rv ; |
68 | |
69 | Float_t checked = 0. ; |
7b7c1533 |
70 | if ( (fCheckable->HasA() == "I") && (fCheckable->HasA() == "F") ) { |
6122abe9 |
71 | Error("CheckingOperation", "checker %s says you got the wrong checkable %s or the checkable has no value !", GetName(), fCheckable->GetName()) ; |
66f72ab4 |
72 | } else { |
73 | checked = fCheckable->GetValue(); |
74 | if (checked < fMean-fRms || checked > fMean+fRms) { |
75 | char * tempo = new char[110] ; |
76 | sprintf(tempo, "-->Checkable : %s :: Checker : %s :: Message : %f outside bond %f +/- %f\n", |
77 | fCheckable->GetName(), GetName(), checked, fMean, fRms) ; |
78 | rv = tempo ; |
780a31c1 |
79 | delete [] tempo ; |
66f72ab4 |
80 | } |
81 | } |
82 | return rv ; |
83 | } |
84 | |
85 | //____________________________________________________________________________ |
86 | void AliPHOSQAMeanChecker::Print() |
87 | { |
88 | // print the name |
89 | |
21cd0c07 |
90 | Info("Print", "Checker : %s : %s : Mean = %f Rms = %f", GetName(), GetTitle(), fMean, fRms) ; |
66f72ab4 |
91 | } |