]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/UNICOR/AliUnicorAnal.cxx
dca vs pT plots
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliUnicorAnal.cxx
CommitLineData
621688e4 1/*************************************************************************
2* Copyright(c) 1998-2048, 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// Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2007
17
18//=============================================================================
19// parent class of all analyzers
20// keeps the obj array of histograms filled by the daughter
21// takes care of storing them on file at the end
22//=============================================================================
23
24#include <TROOT.h>
25#include <TFile.h>
c6fc7f72 26#include <TCollection.h>
27#include <TClass.h>
28#include <TH1.h>
621688e4 29#include "AliUnicorAnal.h"
30
31ClassImp(AliUnicorAnal)
32
33TDatabasePDG AliUnicorAnal::fgPDG;
34
35//=============================================================================
c6fc7f72 36AliUnicorAnal::AliUnicorAnal(char *nam) : TNamed(nam,nam), fHistos() {
37
621688e4 38 // constructor
39
40 fHistos.SetOwner(1);
41 TDirectory *dir = gROOT->mkdir(GetName());
42 dir->cd();
621688e4 43 printf("%s object named %s created\n",ClassName(),GetName());
44}
45//=============================================================================
c6fc7f72 46Long64_t AliUnicorAnal::Merge(const TCollection * const list) {
47
48 // sumup fHistos objects
49
50 for (int i=0; i<fHistos.GetEntries(); i++) {
51 if (fHistos.At(i)->IsA()->InheritsFrom("TH1")) {
52 TH1 *hi = (TH1*) fHistos.At(i);
53 TIter next(list);
54 while (AliUnicorAnal *analtoadd = (AliUnicorAnal*) next()) {
55 TH1 *histotoadd = (TH1*) analtoadd->GetHist(i);
56 hi->Add(histotoadd);
57 }
58 }
59 }
60 return 0;
61}
62//=============================================================================
621688e4 63void AliUnicorAnal::Save(const char *outfil, const char *mode)
64{
65 // store histograms on file in a directory named after the object
66 // mode should be "update" (default) or "new"
67
c6fc7f72 68 printf("%s %s: saving histograms on %s (%s)\n",ClassName(),GetName(),outfil,mode);
621688e4 69 TFile * f = TFile::Open(outfil, mode);
70 TDirectory *dest = f->mkdir(GetName());
71 dest->cd();
72 fHistos.Write();
73 gROOT->cd();
74 f->Close();
75}
76//=============================================================================