/*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooRealMPFE.rdl,v 1.6 2005/06/23 07:37:30 wverkerke Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_REAL_MPFE
#define ROO_REAL_MPFE
#include "RooAbsReal.h"
#include "RooRealProxy.h"
#include "RooListProxy.h"
#include "RooArgList.h"
#include "RooMPSentinel.h"
class RooArgSet ;
class RooRealMPFE : public RooAbsReal {
public:
// Constructors, assignment etc
RooRealMPFE(const char *name, const char *title, RooAbsReal& arg, Bool_t calcInline=kFALSE) ;
RooRealMPFE(const RooRealMPFE& other, const char* name=0);
virtual TObject* clone(const char* newname) const { return new RooRealMPFE(*this,newname); }
virtual ~RooRealMPFE();
void calculate() const ;
virtual Double_t getVal(const RooArgSet* nset=0) const ;
void standby() ;
void setVerbose(Bool_t clientFlag=kTRUE, Bool_t serverFlag=kTRUE) ;
protected:
// Function evaluation
virtual Double_t evaluate() const ;
friend class RooAbsGoodnessOfFit ;
virtual void constOptimize(ConstOpCode opcode) ;
enum State { Initialize,Client,Server,Inline } ;
State _state ;
enum Message { SendReal, SendCat, Calculate, Retrieve, ReturnValue, Terminate, ConstOpt, Verbose } ;
void initialize() ;
void initVars() ;
void serverLoop() ;
RooRealProxy _arg ; // Function to calculate in parallel process
RooListProxy _vars ; // Variables
RooArgList _saveVars ; // Copy of variables
mutable Bool_t _calcInProgress ;
Bool_t _verboseClient ;
Bool_t _verboseServer ;
Bool_t _inlineMode ;
mutable Bool_t _forceCalc ;
Int_t _pipeToClient[2] ; // Pipe to client process
Int_t _pipeToServer[2] ; // Pipe to server process
static RooMPSentinel _sentinel ;
ClassDef(RooRealMPFE,1) // Multi-process front-end for parallel calculation of a real valued function
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1