]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliCTPTimeParams.cxx
Increment version number
[u/mrichter/AliRoot.git] / STEER / AliCTPTimeParams.cxx
index c50bb99a7ad3bbd63512208402171467872b9194..86e0b5cc1b65ed951b91f5ce2437a53d167361e4 100644 (file)
@@ -1,3 +1,19 @@
+/*************************************************************************
+* Copyright(c) 1998-2008, ALICE Experiment at CERN, All rights reserved. *
+*                                                                        *
+* Author: The ALICE Off-line Project.                                    *
+* Contributors are mentioned in the code where appropriate.              *
+*                                                                        *
+* Permission to use, copy, modify and distribute this software and its   *
+* documentation strictly for non-commercial purposes is hereby granted   *
+* without fee, provided that the above copyright notice appears in all   *
+* copies and that both the copyright notice and this permission notice   *
+* appear in the supporting documentation. The authors make no claims     *
+* about the suitability of this software for any purpose. It is          *
+* provided "as is" without express or implied warranty.                  * 
+**************************************************************************/
+
+
 #include <Riostream.h>
 
 #include <TObjArray.h>
@@ -6,8 +22,6 @@
 #include <TString.h>
 #include <TSystem.h>
 #include <TFile.h>
-#include <TCint.h>
-#include <TROOT.h>
 
 #include "AliLog.h"
 #include "AliCTPTimeParams.h"
@@ -15,8 +29,6 @@
 
 ClassImp(AliCTPTimeParams)
 
-const TString AliCTPTimeParams::fgkCTPTimeParamsFileName("/data/CTPTimeParams.root");
-
 //______________________________________________________________________________
 AliCTPTimeParams::AliCTPTimeParams():
 TNamed(),
@@ -31,7 +43,8 @@ fCTPInputTimeParams()
 AliCTPTimeParams::AliCTPTimeParams(const AliCTPTimeParams &timeparams):
  TNamed(),
  fDelayL1L0(timeparams.fDelayL1L0),
- fDelayL2L0(timeparams.fDelayL2L0)
+ fDelayL2L0(timeparams.fDelayL2L0),
+ fCTPInputTimeParams()
 {
  for (Int_t i = 0; i < timeparams.fCTPInputTimeParams.GetSize(); i++) {
  if ( timeparams.fCTPInputTimeParams[i] ) fCTPInputTimeParams.Add(timeparams.fCTPInputTimeParams[i]->Clone());
@@ -66,9 +79,9 @@ AliCTPTimeParams::~AliCTPTimeParams()
 }
 
 //______________________________________________________________________________
-void AliCTPTimeParams::AddInput( TString& inputName, UInt_t& inputLevel, UInt_t inputDelay, TString inputEdge )
+void AliCTPTimeParams::AddInput( TString& inputName, UInt_t& inputLevel, UInt_t inputDelay, TString inputEdge, UInt_t deltamin, UInt_t deltamax )
 {
- fCTPInputTimeParams.AddLast( new AliCTPInputTimeParams(inputName, inputLevel, inputDelay, inputEdge ));
+ fCTPInputTimeParams.AddLast( new AliCTPInputTimeParams(inputName, inputLevel, inputDelay, inputEdge, deltamin, deltamax ));
 }
 
 //______________________________________________________________________________
@@ -78,13 +91,41 @@ void AliCTPTimeParams::AddDelayL0L1L2(UInt_t delayL1L0, UInt_t delayL2L0)
  fDelayL2L0 = delayL2L0;
 }
 //______________________________________________________________________________
+AliCTPInputTimeParams* AliCTPTimeParams::GetTimeParamsForInput( TString inputname)
+{
+ // Get AliCTPInputTimeParams for input name
+Int_t ninputs = fCTPInputTimeParams.GetEntriesFast();
+for ( Int_t i=0; i < ninputs; i++ )
+ {
+  AliCTPInputTimeParams* ctpinputtime = (AliCTPInputTimeParams*)fCTPInputTimeParams.At(i);
+  if (inputname == ctpinputtime->GetInputName() ) return ctpinputtime;
+ }
+cout << "Input: " << inputname << " not found." << endl;
+return NULL;
+}
+//______________________________________________________________________________
+Int_t AliCTPTimeParams::GetDeltasforClass(TString classname,Int_t& deltamin,Int_t& deltamax)
+{
+ // Get deltamin and deltamax for given class
+ // Assumes that descriptor = DINPU
+ // ret: 0=OK, 1= input doea not exist
+ TString input(classname(1,4)); 
+ AliCTPInputTimeParams* tprm = GetTimeParamsForInput(input);
+ if(tprm){
+  deltamin=tprm->GetDeltaMin();
+  deltamax=tprm->GetDeltaMax();
+  return 0;
+ }
+ return 1;
+}
+//______________________________________________________________________________
 AliCTPTimeParams* AliCTPTimeParams::LoadCTPTimeParams(TString filename)
 {
  // Load pre-created CTP time parameters from database/file
  // By default files are stored in GRP/CTP folder
  // The filename is constructed as GRP/CTP/<file>.cfg
   if( gSystem->AccessPathName( filename.Data() )) {
 //AliErrorClass( Form( "File (%s) not found!", filename.Data()));
// AliError( Form( "File (%s) not found!", filename.Data()));
   return NULL;
  }
 
@@ -133,13 +174,14 @@ AliCTPTimeParams* AliCTPTimeParams::LoadCTPTimeParamsFromString(const char* time
 
      if (ctptime->ProcessCTPTimeParamsLine(string->String()) == kFALSE)
      {
-        delete ctptime;
+        ctptime  = 0x0;
         break;
      }
    }
 
    delete tokens;
-   return ctptime;
+   if (ctptime) return ctptime;
+   else return NULL;
 }
 
 //______________________________________________________________________________
@@ -156,29 +198,20 @@ Bool_t AliCTPTimeParams::ProcessCTPTimeParamsLine(const char* line)
    delete tokens;
   }
   else {
-   if (strline.BeginsWith("0")) { level = 0; }   // determine the input level (0, 1 or 2)
-   else if (strline.BeginsWith("1")) { level = 1; }
-   else if (strline.BeginsWith("2")) { level = 2; } 
-   else return 0; // file not in the right format!
+    if (strline.BeginsWith("0")) { level = 0; }   // determine the input level (0, 1 or 2)
+    else if (strline.BeginsWith("1")) { level = 1; }
+    else if (strline.BeginsWith("2")) { level = 2; } 
+    else return kFALSE; // file not in the right format!
    
-   TObjArray *tokens = strline.Tokenize(" \t");
-   AddInput(((TObjString*)tokens->At(0))->String(), level, ((TObjString*)tokens->At(2))->String().Atoi(), ((TObjString*)tokens->At(1))->String() );
+    TObjArray *tokens = strline.Tokenize(" \t");
+    Int_t ntokens = tokens->GetEntriesFast();
+    if (ntokens == 5)  AddInput(((TObjString*)tokens->At(0))->String(), level, ((TObjString*)tokens->At(2))->String().Atoi(), ((TObjString*)tokens->At(1))->String(),  ((TObjString*)tokens->At(3))->String().Atoi(), ((TObjString*)tokens->At(4))->String().Atoi());
+    else if (ntokens == 3) AddInput(((TObjString*)tokens->At(0))->String(), level, ((TObjString*)tokens->At(2))->String().Atoi(), ((TObjString*)tokens->At(1))->String(),  0, 0); //the old format is used - no DeltaMin & DeltaMax!
+         else return kFALSE; // file not in the right format!
   }
-
 return kTRUE;
 }
 
-//______________________________________________________________________________
-Bool_t AliCTPTimeParams::GetCTPTimeParamsDAQLog()
-{
-
-}
-
-//______________________________________________________________________________
-Bool_t AliCTPTimeParams::WriteCTPTimeParamsOCDB()
-{
-
-}
 //______________________________________________________________________________
 void AliCTPTimeParams::Print(const Option_t*) const
 {