Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TPacketizerMulti.h
Go to the documentation of this file.
1 // $Id$
2 // Author: G. Ganis Jan 2010
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TPacketizerMulti
13 #define ROOT_TPacketizerMulti
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // TPacketizerMulti //
18 // //
19 // This class allows to do multiple runs in the same query; each run //
20 // can be a, for example, different dataset or the same dataset with //
21 // entry list. //
22 // The multiple packetizer conatins a list of packetizers which are //
23 // processed in turn. //
24 // The bit TSelector::kNewRun is set in the TSelector object when a new //
25 // packetizer is used. //
26 // //
27 //////////////////////////////////////////////////////////////////////////
28 
29 #include "TVirtualPacketizer.h"
30 
31 
32 class TIter;
33 class TList;
34 class TMap;
35 class TMessage;
36 class TProofProgressStatus;
37 class TSlave;
38 
39 class TPacketizerMulti : public TVirtualPacketizer {
40 
41 private:
42  TList *fPacketizers; // Packetizers to be processed
43  TIter *fPacketizersIter; // Iterator on fPacketizers
44  TVirtualPacketizer *fCurrent; // Packetizer being currently processed
45  TMap *fAssignedPack; // Map {worker,packetizer} of lat assignement
46 
47  TPacketizerMulti();
48  TPacketizerMulti(const TPacketizerMulti&); // no implementation, will generate
49  void operator=(const TPacketizerMulti&); // error on accidental usage
50 
51  TVirtualPacketizer *CreatePacketizer(TDSet *dset, TList *wrks, Long64_t first, Long64_t num,
52  TList *input, TProofProgressStatus *st);
53 
54 public:
55  TPacketizerMulti(TDSet *dset, TList *slaves, Long64_t first, Long64_t num,
56  TList *input, TProofProgressStatus *st);
57  virtual ~TPacketizerMulti();
58 
59  TDSetElement *GetNextPacket(TSlave *wrk, TMessage *r);
60 
61  Int_t GetEstEntriesProcessed(Float_t f, Long64_t &ent, Long64_t &bytes, Long64_t &calls)
62  { if (fCurrent) return fCurrent->GetEstEntriesProcessed(f,ent,bytes,calls);
63  return 1; }
64  Float_t GetCurrentRate(Bool_t &all) { all = kTRUE;
65  return (fCurrent? fCurrent->GetCurrentRate(all) : 0.); }
66  void StopProcess(Bool_t abort, Bool_t stoptimer = kFALSE) {
67  if (fCurrent) fCurrent->StopProcess(abort, stoptimer);
68  TVirtualPacketizer::StopProcess(abort, stoptimer); }
69  void MarkBad(TSlave *wrk, TProofProgressStatus *st, TList **missing)
70  { if (fCurrent) fCurrent->MarkBad(wrk, st, missing); return; }
71  Int_t AddProcessed(TSlave *wrk, TProofProgressStatus *st, Double_t lat, TList **missing)
72  { if (fCurrent) return fCurrent->AddProcessed(wrk, st, lat, missing);
73  return -1; }
74 
75  Int_t GetActiveWorkers() { if (fCurrent) return fCurrent->GetActiveWorkers(); return 0; }
76 
77  ClassDef(TPacketizerMulti,0) //Generate work packets for parallel processing
78 };
79 
80 #endif