1 /*************************************************************************
2 * Copyright(c) 1998-2009, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
16 ///////////////////////////////////////////////////////////////////////////
17 // Dielectron Analysis Main class //
20 Framework to perform event selectoin, single track selection and track pair
23 Convention for the signs of the pair in fPairCandidates:
24 The names are available via the function PairClassName(Int_t i)
26 0: ev1+ ev1+ (same event like sign +)
27 1: ev1+ ev1- (same event unlike sign)
28 2: ev1- ev1- (same event like sign -)
30 3: ev1+ ev2+ (mixed event like sign +)
31 4: ev1- ev2+ (mixed event unlike sign -+)
32 6: ev1+ ev2- (mixed event unlike sign +-)
33 7: ev1- ev2- (mixed event like sign -)
35 5: ev2+ ev2+ (same event like sign +)
36 8: ev2+ ev2- (same event unlike sign)
37 9: ev2- ev2- (same event like sign -)
43 ///////////////////////////////////////////////////////////////////////////
49 #include <AliESDEvent.h>
50 #include <AliESDtrack.h>
52 #include <AliVEvent.h>
53 #include <AliVParticle.h>
54 #include <AliVTrack.h>
55 #include "AliDielectronPair.h"
56 #include "AliDielectronHistos.h"
57 #include "AliDielectronCF.h"
58 #include "AliDielectronMC.h"
59 #include "AliDielectronVarManager.h"
60 #include "AliDielectron.h"
62 ClassImp(AliDielectron)
64 const char* AliDielectron::fgkTrackClassNames[4] = {
71 const char* AliDielectron::fgkPairClassNames[10] = {
84 //________________________________________________________________
85 AliDielectron::AliDielectron() :
86 TNamed("AliDielectron","AliDielectron"),
87 fEventFilter("EventFilter"),
88 fTrackFilter("TrackFilter"),
89 fPairFilter("PairFilter"),
92 fPairCandidates(new TObjArray(10)),
96 // Default constructor
101 //________________________________________________________________
102 AliDielectron::AliDielectron(const char* name, const char* title) :
104 fEventFilter("EventFilter"),
105 fTrackFilter("TrackFilter"),
106 fPairFilter("PairFilter"),
109 fPairCandidates(new TObjArray(10)),
118 //________________________________________________________________
119 AliDielectron::~AliDielectron()
122 // Default destructor
124 if (fHistos) delete fHistos;
125 if (fPairCandidates) delete fPairCandidates;
128 //________________________________________________________________
129 void AliDielectron::Init()
132 // Initialise objects
134 if (fCfManagerPair) fCfManagerPair->InitialiseContainer(fPairFilter);
135 AliDielectronVarManager::InitESDpid(); //currently this will take the values for MC
138 //________________________________________________________________
139 void AliDielectron::Process(AliVEvent *ev1, AliVEvent *ev2)
142 // Process the events
145 AliDielectronVarManager::SetEvent(0x0);
147 //in case we have MC load the MC event and process the MC particles
148 if (AliDielectronMC::Instance()->ConnectMCEvent()) ProcessMC();
150 //if candidate array doesn't exist, create it
151 if (!fPairCandidates->UncheckedAt(0)) {
152 InitPairCandidateArrays();
157 //mask used to require that all cuts are fulfilled
158 UInt_t selectedMask=(1<<fEventFilter.GetCuts()->GetEntries())-1;
161 if ((ev1&&fEventFilter.IsSelected(ev1)!=selectedMask) ||
162 (ev2&&fEventFilter.IsSelected(ev2)!=selectedMask)) return;
164 AliDielectronVarManager::SetEvent(ev1);
166 //fill track arrays for the first event
167 if (ev1) FillTrackArrays(ev1);
169 //fill track arrays for the second event
170 if (ev2) FillTrackArrays(ev2,1);
172 // create pairs and fill pair candidate arrays
173 for (Int_t itrackArr1=0; itrackArr1<4; ++itrackArr1){
174 for (Int_t itrackArr2=itrackArr1; itrackArr2<4; ++itrackArr2){
175 FillPairArrays(itrackArr1, itrackArr2);
179 //in case there is a histogram manager, fill the QA histograms
180 if (fHistos) FillHistograms(ev1);
184 //________________________________________________________________
185 void AliDielectron::ProcessMC()
188 // Process the MC data
191 //loop over all MC data and Fill the CF container if it exist
192 if (!fCfManagerPair) return;
193 fCfManagerPair->SetPdgMother(fPdgMother);
195 AliDielectronMC *dieMC=AliDielectronMC::Instance();
196 for (Int_t ipart=0; ipart<dieMC->GetNMCTracks();++ipart){
197 //TODO: MC truth cut properly!!!
198 AliVParticle *mcPart=dieMC->GetMCTrackFromMCEvent(ipart);
199 if (!dieMC->IsMCMotherToEE(mcPart, fPdgMother)) continue;
200 fCfManagerPair->FillMC(mcPart);
204 //________________________________________________________________
205 void AliDielectron::FillHistograms(const AliVEvent *ev)
208 // Fill Histogram information for tracks and pairs
212 Double_t values[AliDielectronVarManager::kNMaxValues];
213 //Fill event information
214 AliDielectronVarManager::Fill(ev, values);
215 fHistos->FillClass("Event", AliDielectronVarManager::kNMaxValues, values);
217 //Fill track information, separately for the track array candidates
218 for (Int_t i=0; i<4; ++i){
219 className.Form("Track_%s",fgkTrackClassNames[i]);
220 Int_t ntracks=fTracks[i].GetEntriesFast();
221 for (Int_t itrack=0; itrack<ntracks; ++itrack){
222 AliDielectronVarManager::Fill(fTracks[i].UncheckedAt(itrack), values);
223 fHistos->FillClass(className, AliDielectronVarManager::kNMaxValues, values);
227 //Fill Pair information, separately for all pair candidate arrays
228 for (Int_t i=0; i<10; ++i){
229 className.Form("Pair_%s",fgkPairClassNames[i]);
230 Int_t ntracks=PairArray(i)->GetEntriesFast();
231 for (Int_t ipair=0; ipair<ntracks; ++ipair){
232 AliDielectronVarManager::Fill(PairArray(i)->UncheckedAt(ipair), values);
233 fHistos->FillClass(className, AliDielectronVarManager::kNMaxValues, values);
239 //________________________________________________________________
240 void AliDielectron::FillTrackArrays(AliVEvent * const ev, Int_t eventNr)
243 // select tracks and fill track candidate arrays
244 // eventNr = 0: First event, use track arrays 0 and 1
245 // eventNr = 1: Second event, use track arrays 2 and 3
248 Int_t ntracks=ev->GetNumberOfTracks();
249 UInt_t selectedMask=(1<<fTrackFilter.GetCuts()->GetEntries())-1;
250 for (Int_t itrack=0; itrack<ntracks; ++itrack){
252 AliVParticle *particle=ev->GetTrack(itrack);
253 //TODO: temporary solution, perhaps think about a better implementation
254 // This is needed to use AliESDpidCuts, which relies on the ESD event
255 // is set as a AliESDtrack attribute... somehow ugly!
256 if (ev->IsA()==AliESDEvent::Class()){
257 AliESDtrack *track=static_cast<AliESDtrack*>(particle);
258 track->SetESDEvent(static_cast<AliESDEvent*>(ev)); //only in trunk...
262 if (fTrackFilter.IsSelected(particle)!=selectedMask) continue;
264 //fill selected particle into the corresponding track arrays
265 Short_t charge=particle->Charge();
266 if (charge>0) fTracks[eventNr*2].Add(particle);
267 else if (charge<0) fTracks[eventNr*2+1].Add(particle);
271 //________________________________________________________________
272 void AliDielectron::FillPairArrays(Int_t arr1, Int_t arr2) {
274 // select pairs and fill pair candidate arrays
276 Int_t pairIndex=GetPairIndex(arr1,arr2);
278 Int_t ntrack1=fTracks[arr1].GetEntriesFast();
279 Int_t ntrack2=fTracks[arr2].GetEntriesFast();
281 AliDielectronPair *candidate=new AliDielectronPair;
283 UInt_t selectedMask=(1<<fPairFilter.GetCuts()->GetEntries())-1;
285 for (Int_t itrack1=0; itrack1<ntrack1; ++itrack1){
287 if (arr1==arr2) end=itrack1;
288 for (Int_t itrack2=0; itrack2<end; ++itrack2){
289 //create the pair TODO: change hardcoded PID of tracks
290 candidate->SetTracks(static_cast<AliVTrack*>(fTracks[arr1].UncheckedAt(itrack1)), 11,
291 static_cast<AliVTrack*>(fTracks[arr2].UncheckedAt(itrack2)), 11);
292 candidate->SetType(pairIndex);
295 UInt_t cutMask=fPairFilter.IsSelected(candidate);
297 //CF manager for the pair
298 if (fCfManagerPair) fCfManagerPair->Fill(cutMask,candidate);
301 if (cutMask!=selectedMask) continue;
303 //add the candidate to the candidate array
304 PairArray(pairIndex)->Add(candidate);
305 //get a new candidate
306 candidate=new AliDielectronPair;
309 //delete the surplus candidate