]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/MakeMUONRecoParamArray.C
adding eta:phi tracks and clusters histograms
[u/mrichter/AliRoot.git] / MUON / MakeMUONRecoParamArray.C
... / ...
CommitLineData
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/// \ingroup macros
19/// \file MakeMUONRecoParamArray.C
20/// \brief Macro to set reconstruction parameters and put them in the OCDB
21///
22/// \author Philippe Pillot, SUBATECH
23
24#if !defined(__CINT__) || defined(__MAKECINT__)
25
26#include "AliMUONRecoParam.h"
27#include "AliCDBManager.h"
28#include "AliMUONCDB.h"
29
30#include <Riostream.h>
31
32#endif
33
34
35//-----------------------------------------------------------------------
36void MakeMUONRecoParamArray(Int_t startRun = 0,
37 Int_t endRun = AliCDBRunRange::Infinity(),
38 const char* settings="ppIdeal")
39{
40 /// set the reconstruction parameters and store them in the OCDB ($ALICE_ROOT/OCDB/MUON/Calib/RecoParam/).
41 ///
42 /// - make a CDB entry for the run range [startRun, endRun]
43 ///
44 /// for the possible values of settings, please see AliMUONRecoParam::Create
45
46 // init CDB
47 AliCDBManager* man = AliCDBManager::Instance();
48
49 if (!man->IsDefaultStorageSet())
50 {
51 man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
52 }
53
54 man->SetRun(startRun);
55
56 TObjArray* recoParams = AliMUONRecoParam::Create(settings);
57
58 if (recoParams)
59 {
60 // save RecoParam in CDB
61 AliMUONCDB::WriteToCDB(recoParams, "MUON/Calib/RecoParam", startRun, endRun,
62 "reconstruction parameters for MUON", "L. Aphecetche and P. Pillot");
63 }
64
65 delete recoParams;
66}
67