#ifndef ALIFMDEVENTINSPECTOR_H
#define ALIFMDEVENTINSPECTOR_H
#include <TNamed.h>
#include <TAxis.h>
#include <TList.h>
#include "AliDisplacedVertexSelection.h"
class AliESDEvent;
class AliOADBPhysicsSelection;
class TH2D;
class TH1D;
class TH1I;
class TH1F;
class TH2F;
class TH2I;
class TAxis;
class TVector3;
class AliFMDEventInspector : public TNamed
{
public:
enum ECodes {
kOk = 0,
kNoEvent = 0x1,
kNoTriggers = 0x2,
kNoSPD = 0x4,
kNoFMD = 0x8,
kNoVertex = 0x10,
kBadVertex = 0x20
};
enum ETrgBins {
kInel,
kInelGt0,
kNSD,
kV0AND,
kEmpty,
kA,
kB,
kC,
kE,
kPileUp,
kMCNSD,
kSatellite,
kSpdOutlier,
kOffline
};
enum EVtxType {
kNormal,
kpA2012,
kpA2013,
kPWGUD,
kDisplaced
};
enum EPileupType {
kSPD = 0x1,
kTracks = 0x2,
kOutOfBunch = 0x4
};
enum ECentMethod {
kV0Multiplicity,
kV0Amplitude,
kV0Charge,
kFMDRough,
kNTracks,
kLTracks,
kCL0,
kCL1,
kCND,
kNParticles,
kNeutrons,
kV0vsFMD,
kV0vsNTracks,
kZEMvsZDC,
kDefaultCent
};
enum ECollisionSystem {
kUnknown,
kPP,
kPbPb
};
enum EVtxStatus {
kVtxOK = 1,
kNoVtx,
kNoSPDVtx,
kFewContrib,
kUncertain,
kNotVtxZ
};
enum ETrgStatus {
kNoTrgWords=1,
kPP2760Fast,
kMUON,
kTriggered,
kMinBias,
kMinBiasNoSPD,
kV0AndTrg,
kHighMult,
kCentral,
kSemiCentral,
kDiffractive,
kUser,
kOther
};
static const char* fgkFolderName;
AliFMDEventInspector();
AliFMDEventInspector(const char* name);
virtual ~AliFMDEventInspector();
virtual void SetupForData(const TAxis& vtxAxis);
UInt_t Process(const AliESDEvent* event,
UInt_t& triggers,
Bool_t& lowFlux,
UShort_t& ivz,
TVector3& ip,
Double_t& cent,
UShort_t& nClusters);
void CreateOutputObjects(TList* dir);
void SetLowFluxCut(Int_t c) { fLowFluxCut = c; }
void SetMaxVzErr(Double_t c=0.1) { fMaxVzErr = c; }
void SetVertexMethod(EVtxType t) { fVtxMethod = t; }
void SetUseFirstPhysicsVtx(Bool_t use) {
SetVertexMethod(use ? kPWGUD : kNormal); }
void SetpA2012Vtx(Bool_t use) {
SetVertexMethod(use ? kpA2012 : kNormal); }
void SetUseV0AndForNSD(Bool_t use=true) {fUseV0AND = use; }
void SetMinPileupContributors(UShort_t nContrib=3)
{
fMinPileupContrib = nContrib;
}
void SetMinPileupDistance(Double_t cm=0.8)
{
fMinPileupDistance = cm;
}
void SetUseDisplacedVertices(Bool_t use=true) {
SetVertexMethod(use ? kDisplaced : kNormal); }
Bool_t IsUseDisplacedVertices() const { return AllowDisplaced(); }
void SetMinCentrality(Double_t mincent=-1.0);
void SetMaxCentrality(Double_t maxcent=-1.0);
void SetCentralityMethod(const TString& m) { fCentMethod = m; }
void SetCentralityMethod(ECentMethod m);
void SetPileupFlags(UShort_t flags=0x5) { fPileupFlags = flags; }
void SetDebug(Int_t dbg=1) { fDebug = dbg; }
void SetMC(Bool_t isMC=true) { fMC = isMC; }
Bool_t IsMC() const { return fMC; }
Bool_t FetchHistograms(const TList* d,
TH1I*& hEventsTr,
TH1I*& hEventsTrVtx,
TH1I*& hEventsAcc,
TH1I*& hTriggers) const;
Bool_t ReadRunDetails(const AliESDEvent* esd);
UShort_t GetCollisionSystem() const { return fCollisionSystem; }
UShort_t GetEnergy() const { return fEnergy; }
Short_t GetField() const { return fField; }
ULong_t GetRunNumber() const { return fRunNumber; }
Short_t GetProductionYear() const { return fProdYear; }
Char_t GetProductionPeriod() const { return fProdLetter; }
Short_t GetProductionRevision() const { return fProdSVN; }
Bool_t IsProductionMC() const { return fProdMC; }
void Print(Option_t* option="") const;
virtual void StoreInformation();
virtual void StoreProduction();
static const char* CodeString(UInt_t mask);
protected:
AliFMDEventInspector(const AliFMDEventInspector& o);
AliFMDEventInspector& operator=(const AliFMDEventInspector& o);
Bool_t AllowDisplaced() const { return fVtxMethod == kDisplaced; }
void CacheConfiguredTriggerClasses(TList& cache,
const TList* classes,
AliOADBPhysicsSelection* o);
Bool_t ReadTriggers(const AliESDEvent& esd, UInt_t& triggers,
UShort_t& nClusters);
Bool_t CheckpAExtraV0(const AliESDEvent& esd) const;
virtual Bool_t CheckFastPartition(bool fastonly) const;
virtual Bool_t CheckNSD(const AliESDEvent& esd, UInt_t& triggers) const;
virtual Bool_t CheckINELGT0(const AliESDEvent& esd, UShort_t& nClusters,
UInt_t& triggers) const;
virtual Bool_t CheckPileup(const AliESDEvent& esd, UInt_t& triggers) const;
virtual Bool_t CheckMultiVertex(const AliESDEvent& esd,
Bool_t checkOtherBC=false) const;
virtual Bool_t CheckCosmics(const TString& trigStri) const;
virtual Bool_t CheckEmpty(const TString& trigStr, UInt_t& triggers) const;
virtual Bool_t CheckWords(const AliESDEvent& esd, UInt_t& triggers) const;
Bool_t ReadVertex(const AliESDEvent& esd, TVector3& ip);
virtual EVtxStatus CheckPWGUDVertex(const AliESDEvent& esd,
TVector3& ip) const;
virtual EVtxStatus CheckpA2012Vertex(const AliESDEvent& esd,
TVector3& ip) const;
virtual EVtxStatus CheckpA2013Vertex(const AliESDEvent& esd,
TVector3& ip) const;
virtual EVtxStatus CheckVertex(const AliESDEvent& esd, TVector3& ip) const;
virtual Bool_t ReadCentrality(const AliESDEvent& esd, Double_t& cent,
UShort_t& qual) const;
TH1I* fHEventsTr;
TH1I* fHEventsTrVtx;
TH1I* fHEventsAccepted;
TH2D* fHEventsAcceptedXY;
TH1I* fHTriggers;
TH2I* fHTriggerCorr;
TH1I* fHType;
TH1I* fHWords;
TH1F* fHCent;
TH2F* fHCentVsQual;
TH1I* fHStatus;
TH1I* fHVtxStatus;
TH1I* fHTrgStatus;
TH1I* fHPileup;
Int_t fLowFluxCut;
Double_t fMaxVzErr;
TList* fList;
UShort_t fEnergy;
Short_t fField;
UShort_t fCollisionSystem;
Int_t fDebug;
TAxis* fCentAxis;
TAxis fVtxAxis;
EVtxType fVtxMethod;
Bool_t fUseV0AND;
UShort_t fPileupFlags;
UShort_t fMinPileupContrib;
Double_t fMinPileupDistance;
AliDisplacedVertexSelection fDisplacedVertex;
TList fCollWords;
TList fBgWords;
TString fCentMethod;
Double_t fMinCent;
Double_t fMaxCent;
ULong_t fRunNumber;
Bool_t fMC;
Short_t fProdYear;
Char_t fProdLetter;
Short_t fProdPass;
Int_t fProdSVN;
Bool_t fProdMC;
ClassDef(AliFMDEventInspector,14);
};
#endif
AliFMDEventInspector.h:10 AliFMDEventInspector.h:11 AliFMDEventInspector.h:12 AliFMDEventInspector.h:13 AliFMDEventInspector.h:14 AliFMDEventInspector.h:15 AliFMDEventInspector.h:16 AliFMDEventInspector.h:17 AliFMDEventInspector.h:18 AliFMDEventInspector.h:19 AliFMDEventInspector.h:20 AliFMDEventInspector.h:21 AliFMDEventInspector.h:22 AliFMDEventInspector.h:23 AliFMDEventInspector.h:24 AliFMDEventInspector.h:25 AliFMDEventInspector.h:26 AliFMDEventInspector.h:27 AliFMDEventInspector.h:28 AliFMDEventInspector.h:29 AliFMDEventInspector.h:30 AliFMDEventInspector.h:31 AliFMDEventInspector.h:32 AliFMDEventInspector.h:33 AliFMDEventInspector.h:34 AliFMDEventInspector.h:35 AliFMDEventInspector.h:36 AliFMDEventInspector.h:37 AliFMDEventInspector.h:38 AliFMDEventInspector.h:39 AliFMDEventInspector.h:40 AliFMDEventInspector.h:41 AliFMDEventInspector.h:42 AliFMDEventInspector.h:43 AliFMDEventInspector.h:44 AliFMDEventInspector.h:45 AliFMDEventInspector.h:46 AliFMDEventInspector.h:47 AliFMDEventInspector.h:48 AliFMDEventInspector.h:49 AliFMDEventInspector.h:50 AliFMDEventInspector.h:51 AliFMDEventInspector.h:52 AliFMDEventInspector.h:53 AliFMDEventInspector.h:54 AliFMDEventInspector.h:55 AliFMDEventInspector.h:56 AliFMDEventInspector.h:57 AliFMDEventInspector.h:58 AliFMDEventInspector.h:59 AliFMDEventInspector.h:60 AliFMDEventInspector.h:61 AliFMDEventInspector.h:62 AliFMDEventInspector.h:63 AliFMDEventInspector.h:64 AliFMDEventInspector.h:65 AliFMDEventInspector.h:66 AliFMDEventInspector.h:67 AliFMDEventInspector.h:68 AliFMDEventInspector.h:69 AliFMDEventInspector.h:70 AliFMDEventInspector.h:71 AliFMDEventInspector.h:72 AliFMDEventInspector.h:73 AliFMDEventInspector.h:74 AliFMDEventInspector.h:75 AliFMDEventInspector.h:76 AliFMDEventInspector.h:77 AliFMDEventInspector.h:78 AliFMDEventInspector.h:79 AliFMDEventInspector.h:80 AliFMDEventInspector.h:81 AliFMDEventInspector.h:82 AliFMDEventInspector.h:83 AliFMDEventInspector.h:84 AliFMDEventInspector.h:85 AliFMDEventInspector.h:86 AliFMDEventInspector.h:87 AliFMDEventInspector.h:88 AliFMDEventInspector.h:89 AliFMDEventInspector.h:90 AliFMDEventInspector.h:91 AliFMDEventInspector.h:92 AliFMDEventInspector.h:93 AliFMDEventInspector.h:94 AliFMDEventInspector.h:95 AliFMDEventInspector.h:96 AliFMDEventInspector.h:97 AliFMDEventInspector.h:98 AliFMDEventInspector.h:99 AliFMDEventInspector.h:100 AliFMDEventInspector.h:101 AliFMDEventInspector.h:102 AliFMDEventInspector.h:103 AliFMDEventInspector.h:104 AliFMDEventInspector.h:105 AliFMDEventInspector.h:106 AliFMDEventInspector.h:107 AliFMDEventInspector.h:108 AliFMDEventInspector.h:109 AliFMDEventInspector.h:110 AliFMDEventInspector.h:111 AliFMDEventInspector.h:112 AliFMDEventInspector.h:113 AliFMDEventInspector.h:114 AliFMDEventInspector.h:115 AliFMDEventInspector.h:116 AliFMDEventInspector.h:117 AliFMDEventInspector.h:118 AliFMDEventInspector.h:119 AliFMDEventInspector.h:120 AliFMDEventInspector.h:121 AliFMDEventInspector.h:122 AliFMDEventInspector.h:123 AliFMDEventInspector.h:124 AliFMDEventInspector.h:125 AliFMDEventInspector.h:126 AliFMDEventInspector.h:127 AliFMDEventInspector.h:128 AliFMDEventInspector.h:129 AliFMDEventInspector.h:130 AliFMDEventInspector.h:131 AliFMDEventInspector.h:132 AliFMDEventInspector.h:133 AliFMDEventInspector.h:134 AliFMDEventInspector.h:135 AliFMDEventInspector.h:136 AliFMDEventInspector.h:137 AliFMDEventInspector.h:138 AliFMDEventInspector.h:139 AliFMDEventInspector.h:140 AliFMDEventInspector.h:141 AliFMDEventInspector.h:142 AliFMDEventInspector.h:143 AliFMDEventInspector.h:144 AliFMDEventInspector.h:145 AliFMDEventInspector.h:146 AliFMDEventInspector.h:147 AliFMDEventInspector.h:148 AliFMDEventInspector.h:149 AliFMDEventInspector.h:150 AliFMDEventInspector.h:151 AliFMDEventInspector.h:152 AliFMDEventInspector.h:153 AliFMDEventInspector.h:154 AliFMDEventInspector.h:155 AliFMDEventInspector.h:156 AliFMDEventInspector.h:157 AliFMDEventInspector.h:158 AliFMDEventInspector.h:159 AliFMDEventInspector.h:160 AliFMDEventInspector.h:161 AliFMDEventInspector.h:162 AliFMDEventInspector.h:163 AliFMDEventInspector.h:164 AliFMDEventInspector.h:165 AliFMDEventInspector.h:166 AliFMDEventInspector.h:167 AliFMDEventInspector.h:168 AliFMDEventInspector.h:169 AliFMDEventInspector.h:170 AliFMDEventInspector.h:171 AliFMDEventInspector.h:172 AliFMDEventInspector.h:173 AliFMDEventInspector.h:174 AliFMDEventInspector.h:175 AliFMDEventInspector.h:176 AliFMDEventInspector.h:177 AliFMDEventInspector.h:178 AliFMDEventInspector.h:179 AliFMDEventInspector.h:180 AliFMDEventInspector.h:181 AliFMDEventInspector.h:182 AliFMDEventInspector.h:183 AliFMDEventInspector.h:184 AliFMDEventInspector.h:185 AliFMDEventInspector.h:186 AliFMDEventInspector.h:187 AliFMDEventInspector.h:188 AliFMDEventInspector.h:189 AliFMDEventInspector.h:190 AliFMDEventInspector.h:191 AliFMDEventInspector.h:192 AliFMDEventInspector.h:193 AliFMDEventInspector.h:194 AliFMDEventInspector.h:195 AliFMDEventInspector.h:196 AliFMDEventInspector.h:197 AliFMDEventInspector.h:198 AliFMDEventInspector.h:199 AliFMDEventInspector.h:200 AliFMDEventInspector.h:201 AliFMDEventInspector.h:202 AliFMDEventInspector.h:203 AliFMDEventInspector.h:204 AliFMDEventInspector.h:205 AliFMDEventInspector.h:206 AliFMDEventInspector.h:207 AliFMDEventInspector.h:208 AliFMDEventInspector.h:209 AliFMDEventInspector.h:210 AliFMDEventInspector.h:211 AliFMDEventInspector.h:212 AliFMDEventInspector.h:213 AliFMDEventInspector.h:214 AliFMDEventInspector.h:215 AliFMDEventInspector.h:216 AliFMDEventInspector.h:217 AliFMDEventInspector.h:218 AliFMDEventInspector.h:219 AliFMDEventInspector.h:220 AliFMDEventInspector.h:221 AliFMDEventInspector.h:222 AliFMDEventInspector.h:223 AliFMDEventInspector.h:224 AliFMDEventInspector.h:225 AliFMDEventInspector.h:226 AliFMDEventInspector.h:227 AliFMDEventInspector.h:228 AliFMDEventInspector.h:229 AliFMDEventInspector.h:230 AliFMDEventInspector.h:231 AliFMDEventInspector.h:232 AliFMDEventInspector.h:233 AliFMDEventInspector.h:234 AliFMDEventInspector.h:235 AliFMDEventInspector.h:236 AliFMDEventInspector.h:237 AliFMDEventInspector.h:238 AliFMDEventInspector.h:239 AliFMDEventInspector.h:240 AliFMDEventInspector.h:241 AliFMDEventInspector.h:242 AliFMDEventInspector.h:243 AliFMDEventInspector.h:244 AliFMDEventInspector.h:245 AliFMDEventInspector.h:246 AliFMDEventInspector.h:247 AliFMDEventInspector.h:248 AliFMDEventInspector.h:249 AliFMDEventInspector.h:250 AliFMDEventInspector.h:251 AliFMDEventInspector.h:252 AliFMDEventInspector.h:253 AliFMDEventInspector.h:254 AliFMDEventInspector.h:255 AliFMDEventInspector.h:256 AliFMDEventInspector.h:257 AliFMDEventInspector.h:258 AliFMDEventInspector.h:259 AliFMDEventInspector.h:260 AliFMDEventInspector.h:261 AliFMDEventInspector.h:262 AliFMDEventInspector.h:263 AliFMDEventInspector.h:264 AliFMDEventInspector.h:265 AliFMDEventInspector.h:266 AliFMDEventInspector.h:267 AliFMDEventInspector.h:268 AliFMDEventInspector.h:269 AliFMDEventInspector.h:270 AliFMDEventInspector.h:271 AliFMDEventInspector.h:272 AliFMDEventInspector.h:273 AliFMDEventInspector.h:274 AliFMDEventInspector.h:275 AliFMDEventInspector.h:276 AliFMDEventInspector.h:277 AliFMDEventInspector.h:278 AliFMDEventInspector.h:279 AliFMDEventInspector.h:280 AliFMDEventInspector.h:281 AliFMDEventInspector.h:282 AliFMDEventInspector.h:283 AliFMDEventInspector.h:284 AliFMDEventInspector.h:285 AliFMDEventInspector.h:286 AliFMDEventInspector.h:287 AliFMDEventInspector.h:288 AliFMDEventInspector.h:289 AliFMDEventInspector.h:290 AliFMDEventInspector.h:291 AliFMDEventInspector.h:292 AliFMDEventInspector.h:293 AliFMDEventInspector.h:294 AliFMDEventInspector.h:295 AliFMDEventInspector.h:296 AliFMDEventInspector.h:297 AliFMDEventInspector.h:298 AliFMDEventInspector.h:299 AliFMDEventInspector.h:300 AliFMDEventInspector.h:301 AliFMDEventInspector.h:302 AliFMDEventInspector.h:303 AliFMDEventInspector.h:304 AliFMDEventInspector.h:305 AliFMDEventInspector.h:306 AliFMDEventInspector.h:307 AliFMDEventInspector.h:308 AliFMDEventInspector.h:309 AliFMDEventInspector.h:310 AliFMDEventInspector.h:311 AliFMDEventInspector.h:312 AliFMDEventInspector.h:313 AliFMDEventInspector.h:314 AliFMDEventInspector.h:315 AliFMDEventInspector.h:316 AliFMDEventInspector.h:317 AliFMDEventInspector.h:318 AliFMDEventInspector.h:319 AliFMDEventInspector.h:320 AliFMDEventInspector.h:321 AliFMDEventInspector.h:322 AliFMDEventInspector.h:323 AliFMDEventInspector.h:324 AliFMDEventInspector.h:325 AliFMDEventInspector.h:326 AliFMDEventInspector.h:327 AliFMDEventInspector.h:328 AliFMDEventInspector.h:329 AliFMDEventInspector.h:330 AliFMDEventInspector.h:331 AliFMDEventInspector.h:332 AliFMDEventInspector.h:333 AliFMDEventInspector.h:334 AliFMDEventInspector.h:335 AliFMDEventInspector.h:336 AliFMDEventInspector.h:337 AliFMDEventInspector.h:338 AliFMDEventInspector.h:339 AliFMDEventInspector.h:340 AliFMDEventInspector.h:341 AliFMDEventInspector.h:342 AliFMDEventInspector.h:343 AliFMDEventInspector.h:344 AliFMDEventInspector.h:345 AliFMDEventInspector.h:346 AliFMDEventInspector.h:347 AliFMDEventInspector.h:348 AliFMDEventInspector.h:349 AliFMDEventInspector.h:350 AliFMDEventInspector.h:351 AliFMDEventInspector.h:352 AliFMDEventInspector.h:353 AliFMDEventInspector.h:354 AliFMDEventInspector.h:355 AliFMDEventInspector.h:356 AliFMDEventInspector.h:357 AliFMDEventInspector.h:358 AliFMDEventInspector.h:359 AliFMDEventInspector.h:360 AliFMDEventInspector.h:361 AliFMDEventInspector.h:362 AliFMDEventInspector.h:363 AliFMDEventInspector.h:364 AliFMDEventInspector.h:365 AliFMDEventInspector.h:366 AliFMDEventInspector.h:367 AliFMDEventInspector.h:368 AliFMDEventInspector.h:369 AliFMDEventInspector.h:370 AliFMDEventInspector.h:371 AliFMDEventInspector.h:372 AliFMDEventInspector.h:373 AliFMDEventInspector.h:374 AliFMDEventInspector.h:375 AliFMDEventInspector.h:376 AliFMDEventInspector.h:377 AliFMDEventInspector.h:378 AliFMDEventInspector.h:379 AliFMDEventInspector.h:380 AliFMDEventInspector.h:381 AliFMDEventInspector.h:382 AliFMDEventInspector.h:383 AliFMDEventInspector.h:384 AliFMDEventInspector.h:385 AliFMDEventInspector.h:386 AliFMDEventInspector.h:387 AliFMDEventInspector.h:388 AliFMDEventInspector.h:389 AliFMDEventInspector.h:390 AliFMDEventInspector.h:391 AliFMDEventInspector.h:392 AliFMDEventInspector.h:393 AliFMDEventInspector.h:394 AliFMDEventInspector.h:395 AliFMDEventInspector.h:396 AliFMDEventInspector.h:397 AliFMDEventInspector.h:398 AliFMDEventInspector.h:399 AliFMDEventInspector.h:400 AliFMDEventInspector.h:401 AliFMDEventInspector.h:402 AliFMDEventInspector.h:403 AliFMDEventInspector.h:404 AliFMDEventInspector.h:405 AliFMDEventInspector.h:406 AliFMDEventInspector.h:407 AliFMDEventInspector.h:408 AliFMDEventInspector.h:409 AliFMDEventInspector.h:410 AliFMDEventInspector.h:411 AliFMDEventInspector.h:412 AliFMDEventInspector.h:413 AliFMDEventInspector.h:414 AliFMDEventInspector.h:415 AliFMDEventInspector.h:416 AliFMDEventInspector.h:417 AliFMDEventInspector.h:418 AliFMDEventInspector.h:419 AliFMDEventInspector.h:420 AliFMDEventInspector.h:421 AliFMDEventInspector.h:422 AliFMDEventInspector.h:423 AliFMDEventInspector.h:424 AliFMDEventInspector.h:425 AliFMDEventInspector.h:426 AliFMDEventInspector.h:427 AliFMDEventInspector.h:428 AliFMDEventInspector.h:429 AliFMDEventInspector.h:430 AliFMDEventInspector.h:431 AliFMDEventInspector.h:432 AliFMDEventInspector.h:433 AliFMDEventInspector.h:434 AliFMDEventInspector.h:435 AliFMDEventInspector.h:436 AliFMDEventInspector.h:437 AliFMDEventInspector.h:438 AliFMDEventInspector.h:439 AliFMDEventInspector.h:440 AliFMDEventInspector.h:441 AliFMDEventInspector.h:442 AliFMDEventInspector.h:443 AliFMDEventInspector.h:444 AliFMDEventInspector.h:445 AliFMDEventInspector.h:446 AliFMDEventInspector.h:447 AliFMDEventInspector.h:448 AliFMDEventInspector.h:449 AliFMDEventInspector.h:450 AliFMDEventInspector.h:451 AliFMDEventInspector.h:452 AliFMDEventInspector.h:453 AliFMDEventInspector.h:454 AliFMDEventInspector.h:455 AliFMDEventInspector.h:456 AliFMDEventInspector.h:457 AliFMDEventInspector.h:458 AliFMDEventInspector.h:459 AliFMDEventInspector.h:460 AliFMDEventInspector.h:461 AliFMDEventInspector.h:462 AliFMDEventInspector.h:463 AliFMDEventInspector.h:464 AliFMDEventInspector.h:465 AliFMDEventInspector.h:466 AliFMDEventInspector.h:467 AliFMDEventInspector.h:468 AliFMDEventInspector.h:469 AliFMDEventInspector.h:470 AliFMDEventInspector.h:471 AliFMDEventInspector.h:472 AliFMDEventInspector.h:473 AliFMDEventInspector.h:474 AliFMDEventInspector.h:475 AliFMDEventInspector.h:476 AliFMDEventInspector.h:477 AliFMDEventInspector.h:478 AliFMDEventInspector.h:479 AliFMDEventInspector.h:480 AliFMDEventInspector.h:481 AliFMDEventInspector.h:482 AliFMDEventInspector.h:483 AliFMDEventInspector.h:484 AliFMDEventInspector.h:485 AliFMDEventInspector.h:486 AliFMDEventInspector.h:487 AliFMDEventInspector.h:488 AliFMDEventInspector.h:489 AliFMDEventInspector.h:490 AliFMDEventInspector.h:491 AliFMDEventInspector.h:492 AliFMDEventInspector.h:493 AliFMDEventInspector.h:494 AliFMDEventInspector.h:495 AliFMDEventInspector.h:496 AliFMDEventInspector.h:497 AliFMDEventInspector.h:498 AliFMDEventInspector.h:499 AliFMDEventInspector.h:500 AliFMDEventInspector.h:501 AliFMDEventInspector.h:502 AliFMDEventInspector.h:503 AliFMDEventInspector.h:504 AliFMDEventInspector.h:505 AliFMDEventInspector.h:506 AliFMDEventInspector.h:507 AliFMDEventInspector.h:508 AliFMDEventInspector.h:509 AliFMDEventInspector.h:510 AliFMDEventInspector.h:511 AliFMDEventInspector.h:512 AliFMDEventInspector.h:513 AliFMDEventInspector.h:514 AliFMDEventInspector.h:515 AliFMDEventInspector.h:516 AliFMDEventInspector.h:517 AliFMDEventInspector.h:518 AliFMDEventInspector.h:519 AliFMDEventInspector.h:520 AliFMDEventInspector.h:521 AliFMDEventInspector.h:522 AliFMDEventInspector.h:523 AliFMDEventInspector.h:524 AliFMDEventInspector.h:525 AliFMDEventInspector.h:526 AliFMDEventInspector.h:527 AliFMDEventInspector.h:528 AliFMDEventInspector.h:529 AliFMDEventInspector.h:530 AliFMDEventInspector.h:531 AliFMDEventInspector.h:532 AliFMDEventInspector.h:533 AliFMDEventInspector.h:534 AliFMDEventInspector.h:535 AliFMDEventInspector.h:536 AliFMDEventInspector.h:537 AliFMDEventInspector.h:538 AliFMDEventInspector.h:539 AliFMDEventInspector.h:540 AliFMDEventInspector.h:541 AliFMDEventInspector.h:542 AliFMDEventInspector.h:543 AliFMDEventInspector.h:544 AliFMDEventInspector.h:545 AliFMDEventInspector.h:546 AliFMDEventInspector.h:547 AliFMDEventInspector.h:548 AliFMDEventInspector.h:549 AliFMDEventInspector.h:550 AliFMDEventInspector.h:551 AliFMDEventInspector.h:552 AliFMDEventInspector.h:553 AliFMDEventInspector.h:554 AliFMDEventInspector.h:555 AliFMDEventInspector.h:556 AliFMDEventInspector.h:557 AliFMDEventInspector.h:558 AliFMDEventInspector.h:559 AliFMDEventInspector.h:560 AliFMDEventInspector.h:561 AliFMDEventInspector.h:562 AliFMDEventInspector.h:563 AliFMDEventInspector.h:564 AliFMDEventInspector.h:565 AliFMDEventInspector.h:566 AliFMDEventInspector.h:567 AliFMDEventInspector.h:568 AliFMDEventInspector.h:569 AliFMDEventInspector.h:570 AliFMDEventInspector.h:571 AliFMDEventInspector.h:572 AliFMDEventInspector.h:573 AliFMDEventInspector.h:574 AliFMDEventInspector.h:575 AliFMDEventInspector.h:576 AliFMDEventInspector.h:577 AliFMDEventInspector.h:578 AliFMDEventInspector.h:579 AliFMDEventInspector.h:580 AliFMDEventInspector.h:581 AliFMDEventInspector.h:582 AliFMDEventInspector.h:583 AliFMDEventInspector.h:584 AliFMDEventInspector.h:585 AliFMDEventInspector.h:586 AliFMDEventInspector.h:587 AliFMDEventInspector.h:588 AliFMDEventInspector.h:589 AliFMDEventInspector.h:590 AliFMDEventInspector.h:591 AliFMDEventInspector.h:592 AliFMDEventInspector.h:593 AliFMDEventInspector.h:594 AliFMDEventInspector.h:595 AliFMDEventInspector.h:596 AliFMDEventInspector.h:597 AliFMDEventInspector.h:598 AliFMDEventInspector.h:599 AliFMDEventInspector.h:600 AliFMDEventInspector.h:601 AliFMDEventInspector.h:602 AliFMDEventInspector.h:603 AliFMDEventInspector.h:604 AliFMDEventInspector.h:605 AliFMDEventInspector.h:606 AliFMDEventInspector.h:607 AliFMDEventInspector.h:608 AliFMDEventInspector.h:609 AliFMDEventInspector.h:610 AliFMDEventInspector.h:611 AliFMDEventInspector.h:612 AliFMDEventInspector.h:613 AliFMDEventInspector.h:614 AliFMDEventInspector.h:615 AliFMDEventInspector.h:616 AliFMDEventInspector.h:617 AliFMDEventInspector.h:618 AliFMDEventInspector.h:619 AliFMDEventInspector.h:620 AliFMDEventInspector.h:621 AliFMDEventInspector.h:622 AliFMDEventInspector.h:623 AliFMDEventInspector.h:624 AliFMDEventInspector.h:625 AliFMDEventInspector.h:626 AliFMDEventInspector.h:627 AliFMDEventInspector.h:628 AliFMDEventInspector.h:629 AliFMDEventInspector.h:630 AliFMDEventInspector.h:631 AliFMDEventInspector.h:632 AliFMDEventInspector.h:633 AliFMDEventInspector.h:634 AliFMDEventInspector.h:635 AliFMDEventInspector.h:636 AliFMDEventInspector.h:637 AliFMDEventInspector.h:638 AliFMDEventInspector.h:639 AliFMDEventInspector.h:640 AliFMDEventInspector.h:641 AliFMDEventInspector.h:642 AliFMDEventInspector.h:643 AliFMDEventInspector.h:644 AliFMDEventInspector.h:645 AliFMDEventInspector.h:646 AliFMDEventInspector.h:647 AliFMDEventInspector.h:648 AliFMDEventInspector.h:649 AliFMDEventInspector.h:650 AliFMDEventInspector.h:651 AliFMDEventInspector.h:652 AliFMDEventInspector.h:653 AliFMDEventInspector.h:654 AliFMDEventInspector.h:655 AliFMDEventInspector.h:656 AliFMDEventInspector.h:657 AliFMDEventInspector.h:658 AliFMDEventInspector.h:659 AliFMDEventInspector.h:660 AliFMDEventInspector.h:661 AliFMDEventInspector.h:662 AliFMDEventInspector.h:663 AliFMDEventInspector.h:664 AliFMDEventInspector.h:665 AliFMDEventInspector.h:666 AliFMDEventInspector.h:667 AliFMDEventInspector.h:668 AliFMDEventInspector.h:669 AliFMDEventInspector.h:670 AliFMDEventInspector.h:671 AliFMDEventInspector.h:672 AliFMDEventInspector.h:673 AliFMDEventInspector.h:674 AliFMDEventInspector.h:675 AliFMDEventInspector.h:676 AliFMDEventInspector.h:677 AliFMDEventInspector.h:678 AliFMDEventInspector.h:679 AliFMDEventInspector.h:680 AliFMDEventInspector.h:681 AliFMDEventInspector.h:682 AliFMDEventInspector.h:683 AliFMDEventInspector.h:684 AliFMDEventInspector.h:685 AliFMDEventInspector.h:686 AliFMDEventInspector.h:687 AliFMDEventInspector.h:688 AliFMDEventInspector.h:689 AliFMDEventInspector.h:690 AliFMDEventInspector.h:691 AliFMDEventInspector.h:692 AliFMDEventInspector.h:693 AliFMDEventInspector.h:694 AliFMDEventInspector.h:695 AliFMDEventInspector.h:696 AliFMDEventInspector.h:697 AliFMDEventInspector.h:698 AliFMDEventInspector.h:699 AliFMDEventInspector.h:700 AliFMDEventInspector.h:701 AliFMDEventInspector.h:702 AliFMDEventInspector.h:703 AliFMDEventInspector.h:704 AliFMDEventInspector.h:705 AliFMDEventInspector.h:706 AliFMDEventInspector.h:707 AliFMDEventInspector.h:708 AliFMDEventInspector.h:709 AliFMDEventInspector.h:710 AliFMDEventInspector.h:711 AliFMDEventInspector.h:712 AliFMDEventInspector.h:713 AliFMDEventInspector.h:714 AliFMDEventInspector.h:715 AliFMDEventInspector.h:716 AliFMDEventInspector.h:717 AliFMDEventInspector.h:718 AliFMDEventInspector.h:719 AliFMDEventInspector.h:720 AliFMDEventInspector.h:721 AliFMDEventInspector.h:722 AliFMDEventInspector.h:723 AliFMDEventInspector.h:724 AliFMDEventInspector.h:725