メインページ   モジュール   名前空間一覧   クラス階層   アルファベット順一覧   構成   ファイル一覧   構成メンバ   ファイルメンバ   関連ページ    

Ttypes.h の解説

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <list>
#include <vector>
#include <map>
#include <strstream>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <libgen.h>

rootmodules/IO/Ttypes.hのインクルード依存関係図

Include dependency graph

このグラフは、どのファイルから直接、間接的にインクルードされているかを示しています。

Included by dependency graph

ソースコードを見る。

名前空間

namespace  std

マクロ定義

#define Tfalse   0
#define Ttrue   1
#define Tios   std::ios
#define Tlist   std::list
#define Tvector   std::vector
#define Tmap   std::map
#define Tmultimap   std::multimap
#define Tpair   std::pair
#define Tcin   std::cin
#define Tendl   std::endl
#define Tends   std::ends
#define Tdec   std::dec
#define Thex   std::hex
#define Toct   std::oct
#define Tflush   std::flush
#define Tsizeof(_type_)   sizeof(_type_)
#define Tcout   std::cout
#define Tcerr   std::cerr
#define Tclog   std::clog
#define CLDAQ_DEBUG(m)
#define CLDAQ_WARN(m)
#define CLDAQ_EMERG(m)
#define CLDAQ_ABORT(m)   CLDAQ_EMERG(m)
#define CLDAQ_EXIT(m)

Typedef

typedef double Tdouble
typedef int Tint
typedef float Tfloat
typedef char Tchar
typedef long Tlong
typedef unsigned char TUchar
typedef unsigned int TUint
typedef unsigned long TUlong
typedef short Tshort
typedef unsigned short TUshort
typedef bool Tbool
typedef Tbool Tbit
typedef FILE TFileStream
typedef size_t Tsize_t
typedef void Tvoid
typedef std::string Tstring
typedef std::ofstream Tofstream
typedef std::ifstream Tifstream
typedef std::ostream Tostream
typedef std::ostrstream Tostrstream
typedef std::istream Tistream
typedef Tvector< TintTintList
typedef Tvector< TUintTUintList
typedef Tvector< TUshortTUshortList
typedef Tvector< TdoubleTdoubleList
typedef Tvector< TfloatTfloatList
typedef Tvector< TstringTstringList

Enum

enum  Tobject_t {
  tObjectDataRecord,
  tObjectDataSection,
  tObjectDataSegment,
  tObjectDataElement,
  tObject1DHistogram,
  tObject2DHistogram,
  tObjectAppendGraph,
  tObjectSubstituteGraph,
  tObjectNtuple,
  tNumberOfObjectTypes,
  tObjectUnknown = -1
}
enum  Telement_t {
  tTypeInt,
  tTypeString,
  tTypeDouble,
  tTypeObject,
  tTypeFloat,
  tTypeUnsignedShort,
  tTypeShort,
  tTypeWord,
  tTypeLong,
  tTypeUnsignedLong,
  tTypeUnsignedInt,
  tNumberOfElementTypes,
  tTypeUnknown = -1
}
enum  Tstream_t {
  tFileStream,
  tSocketStream,
  tSharedMemoryStream,
  tNumberOfStreamTypes,
  tUnknownStream = -1
}
enum  Trandom_t {
  tRandomExponential,
  tRandomGaussian,
  tRandomChiSquare,
  tRandomLandau,
  tRandomGamma,
  tRandomPoisson,
  tNumberOfRandomTypes,
  tRandomUnknown = -1
}
enum  Tstatus_t {
  tStatusStandby,
  tStatusReady,
  tStatusBusy,
  tStatusIdle,
  tStatusWaitingReady,
  tStatusJustTakingEvent,
  tStatusJustRecordingEvent,
  tStatusSleep,
  tStatusDead,
  tNumberOfStatusTypes,
  tStatusUnknown = -1
}
enum  TvmeTransfer_t {
  tA16D16,
  tA16D32,
  tA24D16,
  tA24D32,
  tA32D16,
  tA32D32,
  tA24D16dma,
  tA32D16dma,
  tA24D32dma,
  tA32D32dma,
  tNumberOfVmeTransferModes,
  tTransferModeUnknown = -1
}
enum  { tIDunknown = -1 }

変数

const Tstring Tslash = "/"
const Tstring Ttab = "\t"
const Tstring Thour = "h"
const Tstring Tmin = "m"
const Tstring Tsec = "s"
const Tstring Tmsec = "ms"
const Tstring Tusec = "us"
const Tstring Tnsec = "ns"
const Tchar Tkey = '\x01'
const Tstring TunknownID = "unkown ID"


マクロ定義の解説

#define CLDAQ_ABORT  )     CLDAQ_EMERG(m)
 

rootmodules/IO/Ttypes.h342 行で定義されています。

#define CLDAQ_DEBUG  ) 
 

値:

if ( strlen(m) ) {\
  Tcout << "[CLDAQ:DEBUG]: " << m << " in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
} else {\
  Tcout << "[CLDAQ:DEBUG]: in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
}

rootmodules/IO/Ttypes.h321 行で定義されています。

呼出 TRegularExpression::Split().

#define CLDAQ_EMERG  ) 
 

値:

if ( strlen(m) ) {\
  Tcerr << "[CLDAQ:EMERG]: " << m << " in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
} else {\
  Tcerr << "[CLDAQ:EMERG]: in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
}\
perror( "[CLDAQ:EMERG]" );\
abort();

rootmodules/IO/Ttypes.h334 行で定義されています。

#define CLDAQ_EXIT  ) 
 

値:

if ( strlen(m) ) {\
  Tcerr << "[CLDAQ:EXIT]: " << m << " in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
} else {\
  Tcerr << "[CLDAQ:EXIT]: in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
}\
perror( "[CLDAQ:EXIT]" );\
exit(EXIT_SUCCESS);

rootmodules/IO/Ttypes.h343 行で定義されています。

#define CLDAQ_WARN  ) 
 

値:

if ( strlen(m) ) {\
  Tcerr << "[CLDAQ:WARNIG]: " << m << " in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
} else {\
  Tcerr << "[CLDAQ:WARNIG]: in \"" << __PRETTY_FUNCTION__ << "\" at " << __FILE__ << " line " << __LINE__ << "." << Tendl;\
}\
perror( "[CLDAQ:WARNING]" );

rootmodules/IO/Ttypes.h327 行で定義されています。

呼出 TRegularExpression::Split().

#define Tcerr   std::cerr
 

rootmodules/IO/Ttypes.h59 行で定義されています。

呼出 TAnalysisStatusTable::AddAnalysisStatus(), TUserInterface::AddCommand(), TAnalyser::AddExtractor(), TReadoutBook::AddReadoutList(), TRunInformationTable::AddRunInformation(), TSoftwareScalerModule::Decrease(), TUnsetEnvironmentVariableCommand::Execute(), TSetRunIdCommand::Execute(), TSetEnvironmentVariableCommand::Execute(), TRunStartCommand::Execute(), TPrintCurrentWorkingDirectoryCommand::Execute(), TListCommand::Execute(), TExecuteCommand::Execute(), TChangeDirectoryCommand::Execute(), TVmeRpv130Module::FillData(), TVmeMpx201aModule::FillData(), TVmeDaughterBoardMemoryModule::FillData(), TSoftwareTimerModule::FillData(), TSoftwareScalerModule::FillData(), TSoftwareRunInformationModule::FillData(), TSoftwareInterruptRegisterModule::FillData(), TSoftwareFlashAdcModule::FillData(), TSoftwareDataFileModule::FillData(), TSoftwareClockModule::FillData(), TSoftwareAdcModule::FillData(), TRs232cModule::FillData(), TCamacSwitchRegisterModule::FillData(), TCamacScalerModule::FillData(), TCamacInterruptRegisterModule::FillData(), TCamacCoincidenceRegisterModule::FillData(), TCamacAdcModule::FillData(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TDecompressObjectFilter::Filtering(), TCompressObjectFilter::Filtering(), TCompressObjectFilter::Finalize(), TVmeModule::getBit(), TUserInterface::GetCommand(), TCommandTable::GetCommandSpecified(), TUserInterface::GetCurrentWorkingDirectoryLevel(), TSoftwareScalerModule::GetData(), TSoftwareAdcModule::GetData(), TAnalyser::GetExtractor(), TRunInformationTable::GetItem(), TSoftwareAdcModule::GetMean(), TCrate::GetModule(), TReadoutBook::GetReadoutList(), TSoftwareAdcModule::GetSigma(), TRunInformationTable::GetValue(), TAnalysisManager::GoAnalysisLoop(), TSoftwareScalerModule::Increase(), TSoftwareDataFileModule::Initialize(), TCrate::InstallModule(), TSystemLogging::operator<<(), TSoftwareDataFileModule::operator=(), TDataSegment::Record(), TDataSection::Record(), TDataRecord::Record(), TDataElement::Record(), TRunInformationTable::Remove(), TAnalysisStatusTable::RemoveAnalysisStatus(), TUserInterface::RemoveCommand(), TAnalyser::RemoveExtractor(), TCrate::RemoveModule(), TReadoutBook::RemoveReadoutList(), TEnvironmentVariableTable::ResetEnvironment(), TAnalyser::ResizeExtractorList(), TVmeModule::setBit(), TDataDeflation::SetCompressionLevel(), TUserInterface::SetCurrentWorkingDirectory(), TSoftwareScalerModule::SetData(), TSoftwareAdcModule::SetData(), TVmeMpx201aModule::SetDataCaptureMode(), TEnvironmentVariableTable::SetEnvironment(), TVmeMpx201aModule::SetEventSynchronisationMode(), TSoftwareAdcModule::SetMean(), TVmeMpx201aModule::SetNumberOfBlock(), TVmeMpx201aModule::SetOffsetAddressForDaughterBoard(), TVmeMpx201aModule::SetPage(), TRunManager::SetReadoutBookDefinition(), TRunManager::SetRunInformationModule(), TVmeMpx201aModule::SetSamplingRate(), TSoftwareAdcModule::SetSigma(), TEventManager::SetStackSize(), TAnalysisStatusTable::SetStatus(), TAnalysisStatusTable::SetThreadID(), TRunManager::SetUserCommand(), TAnalysisManager::StopAnalysis(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), TDataDeflation::TDataDeflation(), TDataInflation::TDataInflation(), TEventManager::TEventManager(), TObjectSharedMemory::TObjectSharedMemory(), TRunManager::TRunManager(), TSoftwareDataFileModule::TSoftwareDataFileModule(), TUserInterface::TUserInterface(), TAnalysisManager::UpdateAnalysis(), TDataDeflation::~TDataDeflation(), と TDataInflation::~TDataInflation().

#define Tcin   std::cin
 

rootmodules/IO/Ttypes.h49 行で定義されています。

呼出 TTerminalUserInterface::readLine().

#define Tclog   std::clog
 

rootmodules/IO/Ttypes.h60 行で定義されています。

#define Tcout   std::cout
 

rootmodules/IO/Ttypes.h58 行で定義されています。

呼出 TFileProperty::Analyse(), TArgument::Analyse(), TRecordDisplay::AutoBuild(), TRunManager::catchAlarmSignal(), TUserInterface::ClearCommands(), TCrate::ClearCrate(), TAnalyser::ClearExtractorList(), TReadoutBook::ClearReadoutBook(), TRunManager::doEventLoop(), TRecordDisplay::Edit(), TShowRunInformationModuleCommand::Execute(), TShowNetworkStatusCommand::Execute(), TSetStackSizeCommand::Execute(), TSetRunIdCommand::Execute(), TRunTimeLimitCommand::Execute(), TRunEventLimitCommand::Execute(), TReadFileCommand::Execute(), TPrintWarrantyCommand::Execute(), TPrintEnvironmentVariableCommand::Execute(), TPrintCurrentWorkingDirectoryCommand::Execute(), THelpCommand::Execute(), TDateCommand::Execute(), TCommand::Execute(), TExtractor::fillMatrixAsNtuple(), TCompressObjectFilter::Filtering(), TCompressObjectFilter::Finalize(), TAnalyser::free(), TDecompressObjectFilter::Initialize(), TCompressObjectFilter::Initialize(), TCommandTable::List(), TUserInterface::NotFoundCommand(), TAnalyser::NotFoundExtractor(), TRecordDisplay::Open(), TSystemLogging::operator<<(), TRecordDisplay::Pause(), TRecordDisplay::Preferences(), TRecordDisplay::PrintAs(), TBenchmark::PrintResult(), TRecordDisplay::ProcessMessage(), TUserInterface::RemoveCommand(), TAnalyser::RemoveExtractor(), TCrate::RemoveModule(), TReadoutBook::RemoveReadoutList(), TRecordDisplay::SaveAs(), TAnalysisManager::SetAnalyser(), TAnalysisManager::SetAnalysisAction(), TRunManager::SetAnalysisManager(), TRunManager::SetCrateDefinition(), TEventManager::SetEventAction(), TRunManager::SetEventManager(), TRunManager::SetReadoutBookDefinition(), TRunManager::SetRunAction(), TRunManager::SetRunInformationModule(), TRunManager::SetSystemAction(), TRunManager::SetUserInterface(), TVmeModule::showBit(), TUtilities::ShowBitPattern(), TCommand::ShowCommandDetail(), TArgument::ShowHelp(), TRunManager::ShowStatus(), TEventManager::ShowStatus(), TAnalysisManager::ShowStatus(), TArgument::ShowUsage(), TArgument::ShowVersion(), TRecordDisplay::Start(), TRunManager::StartRun(), TRecordDisplay::Stop(), TRunManager::StopRun(), TRecordDisplay::TRecordDisplay(), TRecordDisplayPreference::TRecordDisplayPreference(), TRecordDisplay::Undo(), TAnalyser::~TAnalyser(), TAnalysisManager::~TAnalysisManager(), TEventManager::~TEventManager(), と TRunManager::~TRunManager().

#define Tdec   std::dec
 

rootmodules/IO/Ttypes.h52 行で定義されています。

#define Tendl   std::endl
 

rootmodules/IO/Ttypes.h50 行で定義されています。

呼出 TAnalysisStatusTable::AddAnalysisStatus(), TUserInterface::AddCommand(), TAnalyser::AddExtractor(), TReadoutBook::AddReadoutList(), TRunInformationTable::AddRunInformation(), TFileProperty::Analyse(), TArgument::Analyse(), TRecordDisplay::AutoBuild(), TRunManager::catchAlarmSignal(), TUserInterface::ClearCommands(), TCrate::ClearCrate(), TAnalyser::ClearExtractorList(), TReadoutBook::ClearReadoutBook(), TOutputHtmlFileStream::CloseTable(), TSoftwareScalerModule::Decrease(), TRunManager::doEventLoop(), TRecordDisplay::Edit(), TUnsetEnvironmentVariableCommand::Execute(), TShowRunInformationModuleCommand::Execute(), TShowNetworkStatusCommand::Execute(), TSetStackSizeCommand::Execute(), TSetRunIdCommand::Execute(), TSetEnvironmentVariableCommand::Execute(), TRunTimeLimitCommand::Execute(), TRunStartCommand::Execute(), TRunEventLimitCommand::Execute(), TReadFileCommand::Execute(), TPrintWarrantyCommand::Execute(), TPrintEnvironmentVariableCommand::Execute(), TPrintCurrentWorkingDirectoryCommand::Execute(), TListCommand::Execute(), THelpCommand::Execute(), TExecuteCommand::Execute(), TDateCommand::Execute(), TCommand::Execute(), TChangeDirectoryCommand::Execute(), TVmeRpv130Module::FillData(), TVmeMpx201aModule::FillData(), TVmeDaughterBoardMemoryModule::FillData(), TSoftwareTimerModule::FillData(), TSoftwareScalerModule::FillData(), TSoftwareRunInformationModule::FillData(), TSoftwareInterruptRegisterModule::FillData(), TSoftwareFlashAdcModule::FillData(), TSoftwareDataFileModule::FillData(), TSoftwareClockModule::FillData(), TSoftwareAdcModule::FillData(), TRs232cModule::FillData(), TCamacSwitchRegisterModule::FillData(), TCamacScalerModule::FillData(), TCamacInterruptRegisterModule::FillData(), TCamacCoincidenceRegisterModule::FillData(), TCamacAdcModule::FillData(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TExtractor::fillMatrixAsNtuple(), TDecompressObjectFilter::Filtering(), TCompressObjectFilter::Filtering(), TCompressObjectFilter::Finalize(), TAnalyser::free(), TVmeModule::getBit(), TUserInterface::GetCommand(), TCommandTable::GetCommandSpecified(), TUserInterface::GetCurrentWorkingDirectoryLevel(), TSoftwareScalerModule::GetData(), TSoftwareAdcModule::GetData(), TAnalyser::GetExtractor(), TRunInformationTable::GetItem(), TSoftwareAdcModule::GetMean(), TCrate::GetModule(), TReadoutBook::GetReadoutList(), TSoftwareAdcModule::GetSigma(), TRunInformationTable::GetValue(), TAnalysisManager::GoAnalysisLoop(), TSoftwareScalerModule::Increase(), TSoftwareDataFileModule::Initialize(), TDecompressObjectFilter::Initialize(), TCompressObjectFilter::Initialize(), TCrate::InstallModule(), TCommandTable::List(), TUserInterface::NotFoundCommand(), TAnalyser::NotFoundExtractor(), TRecordDisplay::Open(), TOutputHtmlFileStream::OpenTable(), operator<<(), TSoftwareDataFileModule::operator=(), TRecordDisplay::Pause(), TRecordDisplay::Preferences(), TRecordDisplay::PrintAs(), TRunManager::PrintAuthorInformation(), TBenchmark::PrintResult(), TRecordDisplay::ProcessMessage(), TDataSegment::Record(), TDataSection::Record(), TDataRecord::Record(), TDataElement::Record(), TRunInformationTable::Remove(), TAnalysisStatusTable::RemoveAnalysisStatus(), TUserInterface::RemoveCommand(), TAnalyser::RemoveExtractor(), TCrate::RemoveModule(), TReadoutBook::RemoveReadoutList(), TEnvironmentVariableTable::ResetEnvironment(), TAnalyser::ResizeExtractorList(), TRecordDisplay::SaveAs(), TRunManager::SessionStart(), TAnalysisManager::SetAnalyser(), TAnalysisManager::SetAnalysisAction(), TRunManager::SetAnalysisManager(), TVmeModule::setBit(), TDataDeflation::SetCompressionLevel(), TRunManager::SetCrateDefinition(), TUserInterface::SetCurrentWorkingDirectory(), TSoftwareScalerModule::SetData(), TSoftwareAdcModule::SetData(), TVmeMpx201aModule::SetDataCaptureMode(), TEnvironmentVariableTable::SetEnvironment(), TEventManager::SetEventAction(), TRunManager::SetEventManager(), TVmeMpx201aModule::SetEventSynchronisationMode(), TSoftwareAdcModule::SetMean(), TVmeMpx201aModule::SetNumberOfBlock(), TVmeMpx201aModule::SetOffsetAddressForDaughterBoard(), TVmeMpx201aModule::SetPage(), TRunManager::SetReadoutBookDefinition(), TRunManager::SetRunAction(), TRunManager::SetRunInformationModule(), TVmeMpx201aModule::SetSamplingRate(), TSoftwareAdcModule::SetSigma(), TEventManager::SetStackSize(), TAnalysisStatusTable::SetStatus(), TRunManager::SetSystemAction(), TAnalysisStatusTable::SetThreadID(), TRunManager::SetUserCommand(), TRunManager::SetUserInterface(), TVmeModule::showBit(), TUtilities::ShowBitPattern(), TCommand::ShowCommandDetail(), TArgument::ShowHelp(), TRunManager::ShowStatus(), TEventManager::ShowStatus(), TAnalysisManager::ShowStatus(), TArgument::ShowUsage(), TArgument::ShowVersion(), TRecordDisplay::Start(), TRunManager::StartRun(), TRecordDisplay::Stop(), TAnalysisManager::StopAnalysis(), TRunManager::StopRun(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), TArgument::TArgument(), TDataDeflation::TDataDeflation(), TDataInflation::TDataInflation(), TEventManager::TEventManager(), TObjectSharedMemory::TObjectSharedMemory(), TRecordDisplay::TRecordDisplay(), TRecordDisplayPreference::TRecordDisplayPreference(), TRunManager::TRunManager(), TSoftwareDataFileModule::TSoftwareDataFileModule(), TUserInterface::TUserInterface(), TRecordDisplay::Undo(), TAnalysisManager::UpdateAnalysis(), TOutputHtmlFileStream::WriteFooter(), TOutputHtmlFileStream::WriteHeader(), TAnalyser::~TAnalyser(), TAnalysisManager::~TAnalysisManager(), TDataDeflation::~TDataDeflation(), TDataInflation::~TDataInflation(), TEventManager::~TEventManager(), と TRunManager::~TRunManager().

#define Tends   std::ends
 

rootmodules/IO/Ttypes.h51 行で定義されています。

呼出 TUtilities::ConvertDoubleToString(), TUtilities::ConvertIntegerToString(), TUtilities::ConvertLongToString(), と TUtilities::ConvertUnsignedLongToString().

#define Tfalse   0
 

rootmodules/IO/Ttypes.h41 行で定義されています。

呼出 TTerminalUserInterface::AcceptCommand(), TCommandTable::AlreadyExist(), TCommandTable::AlreadyExistDirectory(), TOption::EitherNeedOrNot(), TRecordAssociationTable::Empty(), TUtilities::FileExist(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TExtractor::FindDataElement(), TDataSegment::FindDataElement(), TDataSection::FindDataElement(), TDataRecord::FindDataElement(), TExtractor::FindDataSection(), TDataRecord::FindDataSection(), TExtractor::FindDataSegment(), TDataSection::FindDataSegment(), TDataRecord::FindDataSegment(), TCommandTable::GetDirectoryList(), TRecordAssociationTable::HasAssociation(), TEnvironmentVariableTable::HasEnvironmentItem(), TEnvironmentVariableTable::HasEnvironmentValue(), TEventManager::HasEvent(), TOutputObjectStream::HasFilter(), TInputObjectStream::HasFilter(), TRunInformationTable::HasItem(), TOptionMap::HasOption(), TRunInformationTable::HasRunInformation(), TAnalysisStatusTable::HasStatus(), TTerminalUserInterface::isCursorEnd(), TTerminalUserInterface::isCursorTop(), TMacroFileParser::IsEndOfFile(), TMacroFileParser::IsExecutable(), TFileProperty::IsExecutable(), TMacroFileParser::IsFail(), TMacroFileParser::IsGood(), TRegularExpression::IsMatch(), TCamacCrateController::IsOnline(), TRs232cModule::IsOpen(), TMacroFileParser::IsOpen(), TCamacCrateController::IsOpen(), TFileProperty::IsReadable(), TModuleSpecified::IsSameGroup(), TModule::IsSuccess(), TMacroFileParser::IsSuccess(), TRecordAssociationTable::IsValid(), TFileProperty::IsWritable(), TRs232cModule::modifyData(), TTerminalUserInterface::moveCursorEnd(), TTerminalUserInterface::moveCursorTop(), TOption::NeedNotParameter(), TOption::NeedParameter(), TVmeRpv130Module::operator!=(), TVmeModule::operator!=(), TVmeDaughterBoardMemoryModule::operator!=(), TStreamableObject::operator!=(), TSoftwareTimerModule::operator!=(), TSoftwareScalerModule::operator!=(), TSoftwareRunInformationModule::operator!=(), TSoftwareInterruptRegisterModule::operator!=(), TSoftwareFlashAdcModule::operator!=(), TSoftwareDataFileModule::operator!=(), TSoftwareClockModule::operator!=(), TSoftwareAdcModule::operator!=(), TRunInformationTable::operator!=(), TRunInformation::operator!=(), TRun::operator!=(), TRs232cModule::operator!=(), TRegularExpression::operator!=(), TRecordAssociation::operator!=(), TReadoutSpecified::operator!=(), TReadoutSegment::operator!=(), TReadoutSection::operator!=(), TReadoutList::operator!=(), TReadoutIdentification::operator!=(), TReadoutElement::operator!=(), TOption::operator!=(), TModuleSpecified::operator!=(), TMatrixElement::operator!=(), TEvent::operator!=(), TEnvironmentVariableTable::operator!=(), TDataSegment::operator!=(), TDataSection::operator!=(), TDataRecord::operator!=(), TDataElement::operator!=(), TCommandSpecified::operator!=(), TCamacModule::operator!=(), TCamacCrateController::operator!=(), TAnalysisStatus::operator!=(), TRecordAssociation::operator=(), TCamacCrateController::operator=(), TStreamableObject::operator==(), TRunInformationTable::operator==(), TRun::operator==(), TReadoutIdentification::operator==(), TOption::operator==(), TEvent::operator==(), TDataSegment::operator==(), TDataSection::operator==(), TDataRecord::operator==(), TDataElement::operator==(), TInputObjectSharedMemory::Read(), TAnalyser::ResizeExtractorList(), TCamacCrateController::SetCrateControllerType(), TCommandTable::Sort(), TRecordDisplay::Start(), TCamacCrateController::TCamacCrateController(), TCommandSpecified::TCommandSpecified(), TExtractor::TExtractor(), TInputObjectSharedMemory::TInputObjectSharedMemory(), TObjectSharedMemory::TObjectSharedMemory(), TReadoutElement::TReadoutElement(), TRecordAssociation::TRecordAssociation(), TRecordDisplay::TRecordDisplay(), TRecordDisplayComponent::TRecordDisplayComponent(), TRecordDisplayPreference::TRecordDisplayPreference(), と TOutputObjectSharedMemory::Write().

#define Tflush   std::flush
 

rootmodules/IO/Ttypes.h55 行で定義されています。

呼出 TSystemLogging::operator<<(), operator<<(), TSystemClock::WhatTimeIsIt(), と TSystemClock::WhatTimeIsItNow().

#define Thex   std::hex
 

rootmodules/IO/Ttypes.h53 行で定義されています。

#define Tios   std::ios
 

rootmodules/IO/Ttypes.h43 行で定義されています。

#define Tlist   std::list
 

rootmodules/IO/Ttypes.h44 行で定義されています。

#define Tmap   std::map
 

rootmodules/IO/Ttypes.h46 行で定義されています。

#define Tmultimap   std::multimap
 

rootmodules/IO/Ttypes.h47 行で定義されています。

#define Toct   std::oct
 

rootmodules/IO/Ttypes.h54 行で定義されています。

#define Tpair   std::pair
 

rootmodules/IO/Ttypes.h48 行で定義されています。

#define Tsizeof _type_   )     sizeof(_type_)
 

rootmodules/IO/Ttypes.h56 行で定義されています。

呼出 TRegularExpression::Compile(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TDecompressObjectFilter::Filtering(), TObjectFile::FindDataRecord(), TInputObjectFile::getDataElement(), TVmeMpx201aModule::GetMappingSizeOfDaughterBoard(), TDataSegment::GetRecordSize(), TDataSection::GetRecordSize(), TDataRecord::GetRecordSize(), TDataElement::GetRecordSize(), TObjectFile::GetStreamSize(), TInputObjectSocket::OpenClient(), operator<<(), TInputObjectFile::readProperties(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), TDataElement::Serialize(), TUtilities::ShowBitPattern(), と TObjectFile::Size().

#define Ttrue   1
 

rootmodules/IO/Ttypes.h42 行で定義されています。

呼出 TTerminalUserInterface::AcceptCommand(), TQtUserInterface::AcceptCommand(), TGtkUserInterface::AcceptCommand(), TBrowserUserInterface::AcceptCommand(), TCommandTable::AlreadyExist(), TCommandTable::AlreadyExistDirectory(), TRecordDisplayTab::Build(), TRecordDisplayMenuBar::Build(), TRecordDisplayCanvas::Build(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeDirectory(), TOption::EitherNeedOrNot(), TRecordAssociationTable::Empty(), TUtilities::FileExist(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TCompressObjectFilter::Finalize(), TExtractor::FindDataElement(), TDataSegment::FindDataElement(), TExtractor::FindDataSection(), TDataRecord::FindDataSection(), TExtractor::FindDataSegment(), TDataSection::FindDataSegment(), TCommandTable::GetDirectoryList(), TRecordAssociationTable::HasAssociation(), TEnvironmentVariableTable::HasEnvironmentItem(), TEnvironmentVariableTable::HasEnvironmentValue(), TEventManager::HasEvent(), TOutputObjectStream::HasFilter(), TInputObjectStream::HasFilter(), TRunInformationTable::HasItem(), TOptionMap::HasOption(), TRunInformationTable::HasRunInformation(), TAnalysisStatusTable::HasStatus(), TRegularExpression::IgnoreCase(), TTerminalUserInterface::isCursorEnd(), TTerminalUserInterface::isCursorTop(), TMacroFileParser::IsEndOfFile(), TMacroFileParser::IsExecutable(), TFileProperty::IsExecutable(), TMacroFileParser::IsFail(), TMacroFileParser::IsGood(), TUtilities::IsMatch(), TRegularExpression::IsMatch(), TCamacCrateController::IsOnline(), TRs232cModule::IsOpen(), TMacroFileParser::IsOpen(), TCamacCrateController::IsOpen(), TFileProperty::IsReadable(), TModuleSpecified::IsSameGroup(), TModule::IsSuccess(), TMacroFileParser::IsSuccess(), TFileProperty::IsWritable(), TRs232cKeithley7702Module::modifyData(), TRs232cKeithley2700Module::modifyData(), TRs232cKeithley2400Module::modifyData(), TOption::NeedNotParameter(), TOption::NeedParameter(), TStreamableObject::operator!=(), TRunInformationTable::operator!=(), TRun::operator!=(), TRegularExpression::operator!=(), TReadoutIdentification::operator!=(), TOption::operator!=(), TEvent::operator!=(), TDataSegment::operator!=(), TDataSection::operator!=(), TDataRecord::operator!=(), TDataElement::operator!=(), TVmeRpv130Module::operator==(), TVmeModule::operator==(), TVmeDaughterBoardMemoryModule::operator==(), TStreamableObject::operator==(), TSoftwareTimerModule::operator==(), TSoftwareScalerModule::operator==(), TSoftwareRunInformationModule::operator==(), TSoftwareInterruptRegisterModule::operator==(), TSoftwareFlashAdcModule::operator==(), TSoftwareDataFileModule::operator==(), TSoftwareClockModule::operator==(), TSoftwareAdcModule::operator==(), TRunInformationTable::operator==(), TRunInformation::operator==(), TRun::operator==(), TRs232cModule::operator==(), TRecordAssociation::operator==(), TReadoutSpecified::operator==(), TReadoutSegment::operator==(), TReadoutSection::operator==(), TReadoutList::operator==(), TReadoutIdentification::operator==(), TReadoutElement::operator==(), TOption::operator==(), TModuleSpecified::operator==(), TMatrixElement::operator==(), TEvent::operator==(), TEnvironmentVariableTable::operator==(), TDataSegment::operator==(), TDataSection::operator==(), TDataRecord::operator==(), TDataElement::operator==(), TCommandSpecified::operator==(), TCamacModule::operator==(), TCamacCrateController::operator==(), TAnalysisStatus::operator==(), TRecordDisplay::ProcessMessage(), TAnalyser::ResizeExtractorList(), TCommandTable::Sort(), TRecordDisplay::Start(), TReadoutElement::TReadoutElement(), TRecordDisplay::TRecordDisplay(), TRecordDisplayPreference::TRecordDisplayPreference(), と TOutputObjectSharedMemory::Write().

#define Tvector   std::vector
 

rootmodules/IO/Ttypes.h45 行で定義されています。

呼出 TCommandTable::TCommandTable(), TModuleTable::TModuleTable(), と TReadoutIndex::TReadoutIndex().


Typedef の解説

typedef Tbool Tbit
 

rootmodules/IO/Ttypes.h73 行で定義されています。

呼出 TVmeModule::getBit(), と TVmeMpx201aModule::GetEventSynchronisationMode().

typedef bool Tbool
 

rootmodules/IO/Ttypes.h72 行で定義されています。

呼出 TTerminalUserInterface::AcceptCommand(), TQtUserInterface::AcceptCommand(), TGtkUserInterface::AcceptCommand(), TBrowserUserInterface::AcceptCommand(), TCommandTable::AlreadyExist(), TCommandTable::AlreadyExistDirectory(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeDirectory(), TExtractor::DoesDataFound(), TExtractor::DoesExtractSuccess(), TExtractor::DoesMatrixFill(), TOption::EitherNeedOrNot(), TRecordAssociationTable::Empty(), TUtilities::FileExist(), TDataSegment::FindDataElement(), TDataSection::FindDataElement(), TDataRecord::FindDataElement(), TDataRecord::FindDataSection(), TDataSection::FindDataSegment(), TDataRecord::FindDataSegment(), TCommandTable::GetDirectoryList(), grep(), TRecordAssociationTable::HasAssociation(), TEnvironmentVariableTable::HasEnvironmentItem(), TEnvironmentVariableTable::HasEnvironmentValue(), TEventManager::HasEvent(), TOutputObjectStream::HasFilter(), TInputObjectStream::HasFilter(), TRunInformationTable::HasItem(), TOptionMap::HasOption(), TArgument::HasOption(), TRunInformationTable::HasRunInformation(), TAnalysisStatusTable::HasStatus(), TOutputHtmlFileStream::HasTitle(), TCommandSpecified::IsAliasedCommand(), TRecordDisplay::IsAutoBuild(), TFileProperty::IsBlockDevice(), TRecordDisplayComponent::IsBuild(), TCommandSpecified::IsBuiltinCommand(), TFileProperty::IsCharacterDevice(), TOutputHtmlFileStream::IsClose(), TOutputHtmlFileStream::IsCloseTable(), TTerminalUserInterface::isCursorEnd(), TTerminalUserInterface::isCursorTop(), TVmeMpx201aModule::IsDataOverFlow(), TFileProperty::IsDirectory(), TObjectFile::IsEnd(), TMacroFileParser::IsEndOfFile(), TObjectFile::IsError(), TMacroFileParser::IsExecutable(), TFileProperty::IsExecutable(), isexist(), TMacroFileParser::IsFail(), TFileProperty::IsFIFO(), TMacroFileParser::IsGood(), TCamacCrateController::IsISA7000(), TUtilities::IsMatch(), TRegularExpression::IsMatch(), TVmeMpx201aModule::IsMemoryBlockFull(), TCamacCrateController::IsOnline(), TRs232cModule::IsOpen(), TOutputHtmlFileStream::IsOpen(), TMacroFileParser::IsOpen(), TCamacCrateController::IsOpen(), TOutputHtmlFileStream::IsOpenTable(), TObjectSharedMemory::IsReadable(), TFileProperty::IsReadable(), TInputObjectSharedMemory::IsReadSuccess(), TFileProperty::IsRegularFile(), TModuleSpecified::IsSameGroup(), TInputObjectFileOnline::IsSleep(), TFileProperty::IsSocket(), TModule::IsSuccess(), TMacroFileParser::IsSuccess(), TFileProperty::IsSymbolicLink(), TRecordAssociationTable::IsValid(), TRecordAssociation::IsValid(), TFileProperty::IsWritable(), TOutputHtmlFileStream::IsWrittenFooter(), TOutputHtmlFileStream::IsWrittenHeader(), match(), TRs232cModule::modifyData(), TRs232cKeithley7702Module::modifyData(), TRs232cKeithley2700Module::modifyData(), TRs232cKeithley2400Module::modifyData(), TOption::NeedNotParameter(), TOption::NeedParameter(), TVmeRpv130Module::operator!=(), TVmeMpx201aModule::operator!=(), TVmeModule::operator!=(), TVmeDaughterBoardMemoryModule::operator!=(), TStreamableObject::operator!=(), TSoftwareTimerModule::operator!=(), TSoftwareScalerModule::operator!=(), TSoftwareRunInformationModule::operator!=(), TSoftwareModule::operator!=(), TSoftwareInterruptRegisterModule::operator!=(), TSoftwareFlashAdcModule::operator!=(), TSoftwareDataFileModule::operator!=(), TSoftwareClockModule::operator!=(), TSoftwareAdcModule::operator!=(), TRunInformationTable::operator!=(), TRunInformation::operator!=(), TRun::operator!=(), TRs232cModule::operator!=(), TRegularExpression::operator!=(), TRecordAssociationTable::operator!=(), TRecordAssociation::operator!=(), TReadoutSpecified::operator!=(), TReadoutSegment::operator!=(), TReadoutSection::operator!=(), TReadoutList::operator!=(), TReadoutIdentification::operator!=(), TReadoutElement::operator!=(), TOption::operator!=(), TModuleSpecified::operator!=(), TModule::operator!=(), TMatrixElement::operator!=(), TFileProperty::operator!=(), TEvent::operator!=(), TEnvironmentVariableTable::operator!=(), TDataSegment::operator!=(), TDataSection::operator!=(), TDataRecord::operator!=(), TDataElement::operator!=(), TCommandSpecified::operator!=(), TCamacSwitchRegisterModule::operator!=(), TCamacScalerModule::operator!=(), TCamacOutputRegisterModule::operator!=(), TCamacModule::operator!=(), TCamacInterruptRegisterModule::operator!=(), TCamacCrateController::operator!=(), TCamacCoincidenceRegisterModule::operator!=(), TCamacAdcModule::operator!=(), TAnalysisStatus::operator!=(), TVmeRpv130Module::operator==(), TVmeMpx201aModule::operator==(), TVmeModule::operator==(), TVmeDaughterBoardMemoryModule::operator==(), TStreamableObject::operator==(), TSoftwareTimerModule::operator==(), TSoftwareScalerModule::operator==(), TSoftwareRunInformationModule::operator==(), TSoftwareModule::operator==(), TSoftwareInterruptRegisterModule::operator==(), TSoftwareFlashAdcModule::operator==(), TSoftwareDataFileModule::operator==(), TSoftwareClockModule::operator==(), TSoftwareAdcModule::operator==(), TRunInformationTable::operator==(), TRunInformation::operator==(), TRun::operator==(), TRs232cModule::operator==(), TRegularExpression::operator==(), TRecordAssociationTable::operator==(), TRecordAssociation::operator==(), TReadoutSpecified::operator==(), TReadoutSegment::operator==(), TReadoutSection::operator==(), TReadoutList::operator==(), TReadoutIdentification::operator==(), TReadoutElement::operator==(), TOption::operator==(), TModuleSpecified::operator==(), TModule::operator==(), TMatrixElement::operator==(), TFileProperty::operator==(), TEvent::operator==(), TEnvironmentVariableTable::operator==(), TDataSegment::operator==(), TDataSection::operator==(), TDataRecord::operator==(), TDataElement::operator==(), TCommandSpecified::operator==(), TCamacSwitchRegisterModule::operator==(), TCamacScalerModule::operator==(), TCamacOutputRegisterModule::operator==(), TCamacModule::operator==(), TCamacInterruptRegisterModule::operator==(), TCamacCrateController::operator==(), TCamacCoincidenceRegisterModule::operator==(), TCamacAdcModule::operator==(), TAnalysisStatus::operator==(), TRecordDisplay::ProcessMessage(), TAnalyser::ResizeExtractorList(), TRecordDisplayPreference::SaveGifAtLast(), TRecordDisplayPreference::SavePsAtLast(), TRecordDisplayPreference::SaveRootAtLast(), TCommandTable::Sort(), TRecordDisplay::Start(), TRecordDisplayPreference::TerminateAtLast(), TObjectSharedMemory::TObjectSharedMemory(), と TReadoutElement::TReadoutElement().

typedef char Tchar
 

rootmodules/IO/Ttypes.h65 行で定義されています。

呼出 TArgument::Analyse(), TUtilities::ConvertDoubleToString(), TUtilities::ConvertIntegerToString(), TUtilities::ConvertLongToString(), TUtilities::ConvertUnsignedLongToString(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TObjectFile::FindDataRecord(), TUtilities::GetBaseName(), TInputObjectFile::getDataElement(), TUtilities::GetDirectoryName(), TArgument::GetOriginalArguments(), TDataSegment::GetRecordSize(), TDataSection::GetRecordSize(), TDataRecord::GetRecordSize(), TDataElement::GetRecordSize(), TStringStreamBuffer::GetString(), TCommandTable::List(), TSystemLogging::operator<<(), TRs232cModule::Read(), TTerminalUserInterface::readLine(), TMacroFileParser::ReadLine(), TInputObjectFile::readProperties(), TEnvironmentVariableTable::ResetEnvironment(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), TDataElement::Serialize(), TStringStreamBuffer::TStringStreamBuffer(), TUserInterface::TUserInterface(), TSoftwareDataFileModule::Update(), TSystemClock::WhatTimeIsIt(), と TSystemClock::WhatTimeIsItNow().

typedef double Tdouble
 

rootmodules/IO/Ttypes.h62 行で定義されています。

呼出 TRecordDisplay::Associate(), TRecordDisplay::AutoBuild(), TRecordDisplay::Build(), TUtilities::ConvertFloatToString(), TUtilities::ConvertStringToDouble(), TDataElement::Deserialize(), TSoftwareTimerModule::FillData(), TRs232cModule::FillData(), TSoftwareAdcModule::fillGaussian(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TSystemTimer::GetBeginOfRealTime(), TSystemTimer::GetBeginOfSystemTime(), TSystemTimer::GetBeginOfUserTime(), TInputObjectFile::getDataElement(), TRecordDisplayPreference::GetDefaultMaximumX(), TRecordDisplayPreference::GetDefaultMinimumX(), TDataElement::GetDoubleData(), TArgument::GetDoubleElement(), TArgument::GetDoubleParameter(), TEnvironmentVariableTable::GetDoubleValue(), TSystemTimer::GetEndOfRealTime(), TSystemTimer::GetEndOfSystemTime(), TSystemTimer::GetEndOfUserTime(), TSystemTimer::GetIdlingTime(), TRecordAssociationTable::GetMaximumX(), TRecordAssociation::GetMaximumX(), TRecordAssociationTable::GetMinimumX(), TRecordAssociation::GetMinimumX(), TSystemTimer::GetPausedTime(), TSystemTimer::GetRealElapsedTime(), TSoftwareTimerModule::GetRealElapsedTimeTotal(), TDataElement::GetRecordSize(), TSystemTimer::GetRunningTime(), TSystemTimer::GetSystemElapsedTime(), TSystemTimer::GetTotalIdlingTime(), TSystemTimer::GetTotalRunningTime(), TSystemTimer::GetUserElapsedTime(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TDataElement::Serialize(), TSoftwareAdcModule::setParameters(), TSystemTimer::SetUnit(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), strtod(), TDataRecord::Test(), と TCamacModule::WaitInterrupt().

typedef Tvector<Tdouble> TdoubleList
 

rootmodules/IO/Ttypes.h90 行で定義されています。

呼出 TSoftwareDataFileModule::GetChannel(), TArgument::GetDoubleElements(), TSystemTimer::GetRealLapTime(), TSystemTimer::GetSystemLapTime(), と TSystemTimer::GetUserLapTime().

typedef FILE TFileStream
 

rootmodules/IO/Ttypes.h74 行で定義されています。

呼出 TObjectFile::FindDataRecord(), TObjectFile::GetFileStream(), TObjectFile::GetStreamSize(), と TObjectFile::Size().

typedef float Tfloat
 

rootmodules/IO/Ttypes.h64 行で定義されています。

呼出 TDataElement::Deserialize(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TInputObjectFile::getDataElement(), TDataElement::GetFloatData(), TDataElement::GetRecordSize(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TDataElement::Serialize(), TDataElement::StorePrimitive(), と TDataElement::StorePrimitives().

typedef Tvector<Tfloat> TfloatList
 

rootmodules/IO/Ttypes.h91 行で定義されています。

typedef std::ifstream Tifstream
 

rootmodules/IO/Ttypes.h81 行で定義されています。

呼出 TSoftwareDataFileModule::GetInputFileStream(), TMacroFileParser::GetMacroFileStream(), と TUserInterface::TUserInterface().

typedef int Tint
 

rootmodules/IO/Ttypes.h63 行で定義されています。

呼出 TAnalysisStatusTable::AddAnalysisStatus(), TUserInterface::AddCommand(), TAnalyser::AddExtractor(), TReadoutBook::AddReadoutList(), TFileProperty::Analyse(), TArgument::Analyse(), TRecordDisplay::Associate(), TRecordDisplay::AutoBuild(), TTerminalUserInterface::backspaceCharacter(), TRecordDisplay::Build(), TRecordDisplay::BuildTabFrame(), TVmeRpv130Module::Clear(), TVmeMpx201aModule::Clear(), TVmeDaughterBoardMemoryModule::Clear(), TSoftwareTimerModule::Clear(), TSoftwareScalerModule::Clear(), TSoftwareRunInformationModule::Clear(), TSoftwareInterruptRegisterModule::Clear(), TSoftwareFlashAdcModule::Clear(), TSoftwareDataFileModule::Clear(), TSoftwareClockModule::Clear(), TSoftwareAdcModule::Clear(), TRs232cModule::Clear(), TCrate::Clear(), TCamacScalerModule::Clear(), TCamacModule::Clear(), TCamacCrateController::Clear(), TTerminalUserInterface::clearAfterCursor(), TUserInterface::ClearCommands(), TCrate::ClearCrate(), TAnalyser::ClearExtractorList(), TCamacModule::ClearInterrupt(), TCamacInterruptRegisterModule::ClearInterruptMaskRegister(), TCamacInterruptRegisterModule::ClearInterruptRegister(), TCamacScalerModule::ClearOverflowChannel(), TReadoutBook::ClearReadoutBook(), TTerminalUserInterface::clearScreen(), TOutputHtmlFileStream::clearStatusBit(), TRs232cModule::Close(), TInputObjectSocket::CloseClient(), TObjectSocket::CloseServer(), TRegularExpression::Compile(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeDirectory(), TDataDeflation::Compress(), TUtilities::ConvertIntegerToString(), TUtilities::ConvertLongToString(), TUtilities::ConvertStringToInteger(), TUtilities::ConvertUnsignedLongToString(), TTerminalUserInterface::cutCharacter(), TSoftwareScalerModule::Decrease(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TObjectSharedMemory::Detach(), TCamacModule::DisableInterrupt(), TCamacCrateController::DisableInterrupt(), TCamacInterruptRegisterModule::DisableInterruptOutput(), TRunManager::doEventLoop(), TExecuteCommand::doExecute(), TCamacModule::EnableInterrupt(), TCamacCrateController::EnableInterrupt(), TCamacInterruptRegisterModule::EnableInterruptOutput(), TWaitCommand::Execute(), TUnaliasCommand::Execute(), TSetRunIdCommand::Execute(), TRunEventLimitCommand::Execute(), TReadFileCommand::Execute(), TExecuteCommand::Execute(), TCamacModule::execute(), TVmeDaughterBoardMemoryModule::FillData(), TSoftwareFlashAdcModule::FillData(), TSoftwareClockModule::FillData(), TSoftwareAdcModule::fillGaussian(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TDecompressObjectFilter::Filtering(), TCompressObjectFilter::Filtering(), TCompressObjectFilter::Finalize(), TObjectFile::Find(), TAnalysisStatusTable::FindAnalysisStatus(), TRecordAssociationTable::FindAssociation(), TExtractor::FindDataElement(), TDataSegment::FindDataElement(), TDataSection::FindDataElement(), TDataRecord::FindDataElement(), TObjectFile::FindDataRecord(), TExtractor::FindDataSection(), TDataRecord::FindDataSection(), TExtractor::FindDataSegment(), TDataSection::FindDataSegment(), TDataRecord::FindDataSegment(), TEnvironmentVariableTable::FindEnvironmentItem(), TEnvironmentVariableTable::FindEnvironmentValue(), TEventManager::FindEvent(), TAnalyser::FindExtractor(), TRunInformationTable::FindItem(), TRunInformationTable::FindRunInformation(), TRunInformationTable::FindValue(), TAnalyser::free(), TSystemClock::GetAllocatedTime(), TOption::GetArgumentStyle(), TFileProperty::GetBlockSize(), TSoftwareDataFileModule::GetBufferLength(), TRecordAssociationTable::GetCanvas(), TAnalysisStatusTable::GetCanvasID(), TReadoutElement::GetChannelNumber(), TInputObjectSocket::GetClientDescriptor(), TTerminalUserInterface::GetCommandHistoryIndex(), TCommandTable::GetCommandSpecified(), TDataDeflation::GetCompressionLevel(), TCamacCrateController::GetCrateID(), TObjectSharedMemory::GetCurrentPositionOfMemorySpace(), TUserInterface::GetCurrentWorkingDirectoryLevel(), TTerminalUserInterface::GetCursorPosition(), TSoftwareScalerModule::GetData(), TSoftwareAdcModule::GetData(), TInputObjectFile::getDataElement(), TInputObjectFile::getDataRecord(), TInputObjectFile::getDataSection(), TInputObjectFile::getDataSegment(), TObjectStream::GetDataSize(), TSystemClock::GetDay(), TSoftwareClockModule::GetDay(), TRecordDisplayPreference::GetDefaultNumberOfBins(), TFileProperty::GetDeviceMajorNumber(), TFileProperty::GetDeviceMiorNumber(), TFileProperty::GetDeviceNumber(), TFileProperty::GetDeviceType(), TRecordDisplay::GetDirectory(), TCommandSpecified::GetDirectoryDepth(), TArgument::GetDoubleElements(), TAnalysisStatusTable::GetDrawableObjectID(), TSystemClock::GetElapsedTime(), TSoftwareClockModule::GetElapsedTimeOfLastInitialize(), TSystemClock::GetElapsedTimeOfLastUpdate(), TSoftwareClockModule::GetElapsedTimeOfLastUpdate(), TArgument::GetElement(), TEnvironmentVariableTable::GetEnvironmentItem(), TEnvironmentVariableTable::GetEnvironmentValue(), TEventManager::GetEvent(), TEvent::GetEventID(), TRunManager::GetEventLimit(), TAnalyser::GetExtractorIndex(), TAnalyser::GetExtractorListCapacity(), TSystemLogging::GetFacility(), TVmeModule::GetFileDescriptor(), TRs232cModule::GetFileDescriptor(), TCamacCrateController::GetFileDescriptor(), TRecordDisplayTab::GetFrame(), TRecordDisplay::GetFrame(), TSoftwareInterruptRegisterModule::GetFrequency(), TFileProperty::GetGroupID(), TRecordAssociationTable::GetHistogram(), TSystemClock::GetHour(), TSoftwareClockModule::GetHour(), TAnalysisStatusTable::GetID(), TStringStreamBuffer::GetIndex(), TFileProperty::GetInodeNumber(), TDataElement::GetIntData(), TArgument::GetIntegerElement(), TArgument::GetIntegerElements(), TArgument::GetIntegerParameter(), TSoftwareClockModule::GetIntegerTime(), TEnvironmentVariableTable::GetIntegerValue(), TSoftwareInterruptRegisterModule::GetInterruptMaskRegister(), TSoftwareInterruptRegisterModule::GetInterruptRegister(), TRunInformationTable::GetItem(), TFileProperty::GetLastAccess(), TEventManager::GetLastAccessID(), TFileProperty::GetLastChange(), TObjectStream::GetLastDataSize(), TEventManager::GetLastEvent(), TFileProperty::GetLastModification(), TSystemClock::GetLastUpdateTime(), TStringStreamBuffer::GetLength(), TSystemLogging::GetLevel(), TVmeRpv130Module::GetLevelStatus(), TStringStreamBuffer::GetLogLevel(), TVmeMpx201aModule::GetMappingSizeOfDaughterBoard(), TObjectSharedMemory::GetMaxEvent(), TRecordAssociationTable::GetMaximumX(), TSoftwareAdcModule::GetMean(), TObjectSharedMemory::GetMemorySize(), TInputObjectFileOnline::GetMicroSleepTime(), TRecordAssociationTable::GetMinimumX(), TSystemClock::GetMinute(), TSoftwareClockModule::GetMinute(), TSystemClock::GetMonth(), TSoftwareClockModule::GetMonth(), TEventManager::GetNewestEvent(), TEventManager::GetNextEvent(), TRecordAssociationTable::GetNumberOfBins(), TRecordAssociation::GetNumberOfBins(), TVmeMpx201aModule::GetNumberOfBlock(), TFileProperty::GetNumberOfBlocks(), TModule::GetNumberOfChannels(), TUserInterface::GetNumberOfColumns(), TArgument::GetNumberOfElements(), TEnvironmentVariableTable::GetNumberOfEnvironments(), TMatrixElement::GetNumberOfEvents(), TEventManager::GetNumberOfEvents(), TAnalyser::GetNumberOfExtractors(), TFileProperty::GetNumberOfHardLinks(), TSystemTimer::GetNumberOfLaps(), TSoftwareDataFileModule::GetNumberOfLine(), TUserInterface::GetNumberOfLines(), TRegularExpression::GetNumberOfMatches(), TArgument::GetNumberOfOriginalArguments(), TDataElement::GetNumberOfPrimitives(), TRecordDisplay::GetNumberOfRecords(), TRunInformationTable::GetNumberOfRows(), TVmeDaughterBoardMemoryModule::GetNumberOfSampling(), TSoftwareFlashAdcModule::GetNumberOfSampling(), TRegularExpression::GetNumberOfSubMatches(), TMatrixElement::GetNumberOfTuples(), TAnalysisStatusTable::GetObjectType(), TObjectFile::GetOffset(), TSystemLogging::GetOption(), TRegularExpression::GetOption(), TVmeMpx201aModule::GetPage(), TOptionMap::GetParameter(), TObjectSocket::GetPortNumber(), TFileProperty::GetProtection(), TCamacModule::GetQ(), TVmeRpv130Module::GetReadoutMode(), TDataSegment::GetRecordSize(), TDataSection::GetRecordSize(), TDataRecord::GetRecordSize(), TDataElement::GetRecordSize(), TRunManager::GetRunID(), TRun::GetRunID(), TExtractor::GetSamplingRate(), TSoftwareAdcModule::GetScale(), TSystemClock::GetSecond(), TSoftwareClockModule::GetSecond(), TSoftwareAdcModule::GetSeed(), TObjectSocket::GetServerDescriptor(), TObjectSharedMemory::GetSharedMemoryID(), TSoftwareAdcModule::GetSigma(), TReadoutIndex::GetSize(), TModuleTable::GetSize(), TCommandTable::GetSize(), TDataDeflation::GetSizeOfDeflatedData(), TDataInflation::GetSizeOfInflatedData(), TDataInflation::GetSizeOfOutputBuffer(), TDataDeflation::GetSizeOfOutputBuffer(), TRecordDisplayPreference::GetSleepTime(), TCamacModule::GetSlotNumber(), TEventManager::GetStackSize(), TSystemTimer::GetStatus(), TOutputHtmlFileStream::GetStatus(), TModule::GetStatus(), TDataInflation::GetStatus(), TDataDeflation::GetStatus(), TAnalysisStatusTable::GetStatus(), TObjectFile::GetStreamSize(), TRegularExpression::GetSubMatch(), TAnalysisStatusTable::GetThreadID(), TSystemClock::GetTime(), TObjectStream::GetTotalDataSize(), TFileProperty::GetTotalSize(), TRecordDisplayPreference::GetUpdateCycle(), TFileProperty::GetUserID(), TRunInformationTable::GetValue(), TCamacModule::GetX(), TSystemClock::GetYear(), TSoftwareClockModule::GetYear(), TAnalysisStatusTable::HasStatus(), TRegularExpression::IgnoreCase(), TSoftwareScalerModule::Increase(), TCamacScalerModule::IncrementAllChannel(), TRegularExpression::Index(), TRegularExpression::Indexes(), TVmeRpv130Module::Initialize(), TVmeMpx201aModule::Initialize(), TVmeDaughterBoardMemoryModule::Initialize(), TSoftwareTimerModule::Initialize(), TSoftwareScalerModule::Initialize(), TSoftwareRunInformationModule::Initialize(), TSoftwareInterruptRegisterModule::Initialize(), TSoftwareFlashAdcModule::Initialize(), TSoftwareDataFileModule::Initialize(), TSoftwareClockModule::Initialize(), TSoftwareAdcModule::Initialize(), TSignalHandler::Initialize(), TRs232cModule::Initialize(), TCrate::Initialize(), TCamacScalerModule::Initialize(), TCamacModule::Initialize(), TCamacInterruptRegisterModule::Initialize(), TCamacCrateController::Initialize(), TTerminalUserInterface::initializeCommandLine(), TTerminalUserInterface::insertCharacter(), TCrate::InstallModule(), TTerminalUserInterface::isCursorEnd(), TCamacCrateController::IsOnline(), TRecordAssociationTable::IsValid(), TCamacOutputRegisterModule::Level(), TCommandTable::List(), TRegularExpression::MatchString(), TRegularExpression::MatchStrings(), TUserInterface::ModifyPath(), TTerminalUserInterface::nextCommand(), TAnalyser::NotFoundExtractor(), TRs232cModule::Open(), TInputObjectSocket::OpenClient(), TObjectSocket::OpenServer(), TDataElement::operator!=(), TSystemLogging::operator<<(), operator<<(), TSystemClock::operator=(), TDataElement::operator==(), operator>>(), TInputObjectFile::operator[](), TStringStreamBuffer::overflow(), TTerminalUserInterface::pasteCharacter(), TRunManager::PopupLogo(), TTerminalUserInterface::previousCommand(), TRunManager::PrintAuthorInformation(), TCamacOutputRegisterModule::Pulse(), TInputObjectSocket::Read(), TInputObjectSharedMemory::Read(), TInputObjectFileOnline::Read(), TInputObjectFile::Read(), TCamacModule::Read(), TCamacModule::ReadInterrupt(), TCamacInterruptRegisterModule::ReadInterruptMaskRegister(), TSoftwareInterruptRegisterModule::ReadInterruptRegister(), TCamacInterruptRegisterModule::ReadInterruptRegister(), TCamacScalerModule::ReadOverflowChannel(), TInputObjectFile::readProperties(), TDataSegment::Record(), TDataSection::Record(), TDataRecord::Record(), TDataElement::Record(), TCamacCrateController::ReleaseInhibition(), TObjectSharedMemory::Remove(), TAnalysisStatusTable::RemoveAnalysisStatus(), TUserInterface::RemoveCommand(), TAnalyser::RemoveExtractor(), TCrate::RemoveModule(), TReadoutBook::RemoveReadoutList(), TCamacCrateController::Reset(), TEnvironmentVariableTable::ResetEnvironment(), TAnalyser::ResizeExtractorList(), TRecordDisplay::Save(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), TDataElement::Serialize(), TRecordAssociationTable::SetCanvas(), TEnvironmentVariableTable::SetEnvironment(), TRecordAssociationTable::SetHistogram(), TCamacCrateController::SetInhibition(), TRecordAssociationTable::SetMaximumX(), TRecordAssociationTable::SetMinimumX(), TRecordAssociationTable::SetNumberOfBins(), TSoftwareAdcModule::setParameters(), TAnalysisStatusTable::SetStatus(), TOutputHtmlFileStream::setStatusBit(), TAnalysisStatusTable::SetThreadID(), TRunManager::SetUserCommand(), TVmeModule::showBit(), TUtilities::ShowBitPattern(), TRunManager::ShowStatus(), TRegularExpression::Size(), TRecordAssociationTable::Size(), TObjectFile::Size(), TDataSegment::Size(), TDataSection::Size(), TDataRecord::Size(), TDataElement::Size(), TRegularExpression::Sizes(), TRegularExpression::Split(), TRunManager::StopRun(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), strtoi(), TRegularExpression::Substitute(), TRegularExpression::SubstituteAll(), TStringStreamBuffer::sync(), TDataRecord::Test(), TCamacModule::TestInterrupt(), TExtractor::TExtractor(), TOptionTable::TOptionTable(), TReadoutElement::TReadoutElement(), TReadoutSegment::TReadoutSegment(), TSystemClock::TSystemClock(), TEnvironmentVariableTable::UnsetEnvironment(), TVmeRpv130Module::Update(), TVmeMpx201aModule::Update(), TVmeDaughterBoardMemoryModule::Update(), TSystemClock::Update(), TSoftwareTimerModule::Update(), TSoftwareScalerModule::Update(), TSoftwareRunInformationModule::Update(), TSoftwareInterruptRegisterModule::Update(), TSoftwareFlashAdcModule::Update(), TSoftwareDataFileModule::Update(), TSoftwareClockModule::Update(), TSoftwareAdcModule::Update(), TRs232cModule::Update(), TCrate::Update(), TCamacScalerModule::Update(), TCamacModule::Update(), TCamacCrateController::Update(), TAnalysisManager::UpdateAnalysis(), TSignalHandler::Wait(), TCamacModule::WaitInterrupt(), TSystemClock::WhatTimeIsIt(), TSystemClock::WhatTimeIsItNow(), TRs232cModule::Write(), TOutputObjectSocket::Write(), TOutputObjectSharedMemory::Write(), TOutputObjectFile::Write(), TCamacModule::Write(), と TCamacInterruptRegisterModule::WriteInterruptMaskRegister().

typedef Tvector<Tint> TintList
 

rootmodules/IO/Ttypes.h87 行で定義されています。

呼出 TArgument::GetIntegerElements(), TSoftwareAdcModule::GetMean(), TSoftwareAdcModule::GetSigma(), index(), TUtilities::Index(), TRegularExpression::Indexes(), TCommandTable::List(), size(), TUtilities::Size(), と TRegularExpression::Sizes().

typedef std::istream Tistream
 

rootmodules/IO/Ttypes.h84 行で定義されています。

typedef long Tlong
 

rootmodules/IO/Ttypes.h66 行で定義されています。

呼出 TVmeDaughterBoardMemoryModule::Clear(), TDataElement::Deserialize(), TVmeDaughterBoardMemoryModule::FillData(), TObjectFile::FindDataRecord(), TInputObjectFile::getDataElement(), TDataElement::GetLongData(), TDataElement::GetRecordSize(), TObjectFile::GetStreamSize(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TDataElement::Serialize(), TObjectFile::SetOffset(), TObjectFile::Size(), TDataElement::StorePrimitive(), と TDataElement::StorePrimitives().

typedef std::ofstream Tofstream
 

rootmodules/IO/Ttypes.h80 行で定義されています。

呼出 TUserInterface::GetHistoryFileStream(), TRunManager::SessionStart(), と TOutputHtmlFileStream::TOutputHtmlFileStream().

typedef std::ostream Tostream
 

rootmodules/IO/Ttypes.h82 行で定義されています。

typedef std::ostrstream Tostrstream
 

rootmodules/IO/Ttypes.h83 行で定義されています。

typedef short Tshort
 

rootmodules/IO/Ttypes.h70 行で定義されています。

呼出 TDataElement::Deserialize(), TVmeDaughterBoardMemoryModule::FillData(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TInputObjectFile::getDataElement(), TVmeMpx201aModule::GetDeviceType(), TVmeMpx201aModule::GetMappingSizeOfDaughterBoard(), TVmeMpx201aModule::GetNumberOfBlock(), TVmeMpx201aModule::GetOffsetAddressForDaughterBoard(), TVmeMpx201aModule::GetPage(), TVmeMpx201aModule::GetProductID(), TDataElement::GetRecordSize(), TDataElement::GetShortData(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TDataElement::Serialize(), TVmeMpx201aModule::SetNumberOfBlock(), TVmeMpx201aModule::SetOffsetAddressForDaughterBoard(), TVmeMpx201aModule::SetPage(), TVmeMpx201aModule::SetSamplingRate(), TDataElement::StorePrimitive(), と TDataElement::StorePrimitives().

typedef size_t Tsize_t
 

rootmodules/IO/Ttypes.h75 行で定義されています。

呼出 TCommandTable::AlreadyExistDirectory(), TArgument::Analyse(), TRecordDisplay::Associate(), TRecordDisplay::Build(), TRecordDisplay::BuildTabFrame(), TRunInformationTable::Clear(), TRecordDisplay::Clear(), TDataSegment::Clear(), TDataSection::Clear(), TDataRecord::Clear(), TEnvironmentVariableTable::ClearEnvironment(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeDirectory(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TTerminalUserInterface::divide(), TRunManager::divide(), TShellCommand::Execute(), TSetRunIdCommand::Execute(), TRunStartCommand::Execute(), TListCommand::Execute(), TAnalysisSuspendCommand::Execute(), TAnalysisStopCommand::Execute(), TAnalysisStartCommand::Execute(), TAnalysisResumeCommand::Execute(), TCompressObjectFilter::Filtering(), TCompressObjectFilter::Finalize(), TRecordAssociationTable::FindAssociation(), TCommandTable::FindCommand(), TDataSegment::FindDataElement(), TObjectFile::FindDataRecord(), TDataRecord::FindDataSection(), TDataSection::FindDataSegment(), TModuleTable::FindModule(), TReadoutIndex::FindReadoutList(), TTerminalUserInterface::forwardCursor(), TUtilities::GetBaseName(), TCommandTable::GetCommandList(), TUserInterface::GetCurrentWorkingDirectoryLevel(), TInputObjectFile::getDataElement(), TInputObjectFile::getDataRecord(), TInputObjectFile::getDataSection(), TInputObjectFile::getDataSegment(), TCommandTable::GetDirectoryList(), TUtilities::GetDirectoryName(), TVmeModule::GetMappedSize(), TOptionMap::GetParameter(), TDataSegment::GetRecordSize(), TDataSection::GetRecordSize(), TDataRecord::GetRecordSize(), TDataElement::GetRecordSize(), TObjectFile::GetStreamSize(), TOptionMap::HasOption(), TRecordDisplay::Initialize(), TModuleSpecified::IsSameGroup(), TCommandTable::List(), TUserInterface::ModifyPath(), TRunInformationTable::operator+(), operator<<(), TRecordDisplay::Print(), TReadoutSegment::Read(), TReadoutSection::Read(), TReadoutList::Read(), TMacroFileParser::ReadLine(), TInputObjectFile::readProperties(), TDataSegment::Record(), TDataRecord::Record(), TEnvironmentVariableTable::ResetEnvironment(), TRecordDisplay::Save(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), TDataElement::Serialize(), TEnvironmentVariableTable::SetEnvironment(), TRunInformationTable::SetRunInformation(), TObjectFile::Size(), TCommandTable::Sort(), TRegularExpression::Split(), TEnvironmentVariableTable::TEnvironmentVariableTable(), TReadoutElement::TReadoutElement(), TReadoutSegment::TReadoutSegment(), TUserInterface::TUserInterface(), TEnvironmentVariableTable::UnsetEnvironment(), TRecordDisplay::Update(), TSystemClock::WhatTimeIsIt(), と TSystemClock::WhatTimeIsItNow().

typedef std::string Tstring
 

rootmodules/IO/Ttypes.h79 行で定義されています。

呼出 TAnalysisStatusTable::AddAnalysisStatus(), TAnalyser::AddExtractor(), TReadoutBook::AddReadoutList(), TRunInformationTable::AddRunInformation(), TCommandTable::AlreadyExist(), TCommandTable::AlreadyExistDirectory(), TArgument::Analyse(), TRecordDisplay::Associate(), TRecordDisplay::AutoBuild(), basename(), TRecordDisplay::Build(), TRecordDisplay::BuildTabFrame(), TUserInterface::ClearCommands(), TCrate::ClearCrate(), TAnalyser::ClearExtractorList(), TReadoutBook::ClearReadoutBook(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeCommand(), TTerminalUserInterface::completeDirectory(), TDataDeflation::Compress(), TUtilities::ConvertDoubleToString(), TUtilities::ConvertFloatToString(), TUtilities::ConvertIntegerToString(), TUtilities::ConvertLongToString(), TUtilities::ConvertUnsignedLongToString(), TDataInflation::Decompress(), TRs232cKeithley7702Module::defineReadMethod(), TDataElement::Deserialize(), dirname(), TAnalysisManager::doAnalysisLoop(), TExecuteCommand::doExecute(), TRs232cModule::DoReadMethod(), dtostr(), TWaitCommand::Execute(), TUnsetEnvironmentVariableCommand::Execute(), TUnaliasCommand::Execute(), TSleepCommand::Execute(), TShowRunInformationModuleCommand::Execute(), TShellCommand::Execute(), TSetStackSizeCommand::Execute(), TSetRunIdCommand::Execute(), TSetEnvironmentVariableCommand::Execute(), TRunTimeLimitCommand::Execute(), TRunStartCommand::Execute(), TReadFileCommand::Execute(), TPrintEnvironmentVariableCommand::Execute(), TPrintCurrentWorkingDirectoryCommand::Execute(), THelpCommand::Execute(), TExecuteCommand::Execute(), TUserInterface::ExecuteCommand(), TSoftwareTimerModule::FillData(), TSoftwareRunInformationModule::FillData(), TSoftwareClockModule::FillData(), TRs232cModule::FillData(), TCamacCoincidenceRegisterModule::FillData(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TAnalyser::free(), ftostr(), TCommandSpecified::GetAbsolutePath(), TTerminalUserInterface::GetAcceptString(), TAnalyser::GetAnalyserID(), TUtilities::GetBaseName(), TAnalysisStatusTable::GetCanvasID(), TAnalysisStatus::GetCanvasID(), TRecordDisplay::GetCanvasName(), TMacroFileParser::GetCommand(), TTerminalUserInterface::GetCommandBuffer(), TCommandTable::GetCommandList(), TCommand::GetCommandName(), TCommandTable::GetCommandSpecified(), TUserInterface::GetCurrentWorkingDirectory(), TInputObjectFile::getDataElement(), TInputObjectFile::getDataRecord(), TInputObjectFile::getDataSection(), TInputObjectFile::getDataSegment(), TRunInformation::GetDefaultValue(), TOption::GetDescription(), TRs232cModule::GetDeviceFile(), TRecordDisplay::GetDirectory(), TCommandTable::GetDirectoryList(), TUtilities::GetDirectoryName(), TFileProperty::GetDirectoryName(), TArgument::GetDirectoryName(), TAnalysisStatusTable::GetDrawableObjectID(), TAnalysisStatus::GetDrawableObjectID(), TArgument::GetElement(), TRecordAssociation::GetElementID(), TRecordDisplayPreference::GetEndOfRecordID(), TEnvironmentVariableTable::GetEnvironmentItem(), TEnvironmentVariableTable::GetEnvironmentValue(), TExtractor::GetExtractorID(), TFileProperty::GetFileExtensionName(), TSoftwareDataFileModule::GetFileName(), TOutputHtmlFileStream::GetFileName(), TObjectFile::GetFileName(), TFileProperty::GetFileName(), TFileProperty::GetFileRootName(), TRecordDisplayTab::GetFrame(), TCommandSpecified::GetFullName(), TCommand::GetGuidance(), TRecordDisplay::GetHistogramName(), TSystemLogging::GetID(), TStreamableObject::GetID(), TReadoutIdentification::GetID(), TAnalysisStatusTable::GetID(), TAnalysisStatus::GetID(), TTerminalUserInterface::GetInputCommand(), TQtUserInterface::GetInputCommand(), TGtkUserInterface::GetInputCommand(), TBrowserUserInterface::GetInputCommand(), TRunInformationTable::GetItem(), TRunInformation::GetItem(), TReadoutSpecified::GetListID(), TOption::GetLongOption(), TMacroFileParser::GetMacroFileName(), TMatrixElement::GetMatrixID(), TSystemLogging::GetMessageBuffer(), TObjectFile::GetMode(), TModuleSpecified::GetModuleID(), TCommandSpecified::GetName(), TOptionMap::GetParameter(), TArgument::GetParameter(), TFileProperty::GetPathName(), TRegularExpression::GetPattern(), TArgument::GetProgramName(), TTerminalUserInterface::GetPrompt(), TRecordAssociation::GetRecordID(), TDataElement::GetRecordSize(), TRecordDisplayPreference::GetRootOfFileName(), TRecordAssociation::GetSectionID(), TRecordAssociation::GetSegmentID(), TSoftwareDataFileModule::GetSeparater(), TOutputObjectSocket::GetServerName(), TOption::GetShortOption(), TBenchmark::GetStartTime(), TBenchmark::GetStopTime(), TTerminalUserInterface::GetStringBuffer(), TDataElement::GetStringData(), TEvent::GetStringEventID(), TFileProperty::GetStringGroupID(), TFileProperty::GetStringLastAccess(), TFileProperty::GetStringLastChange(), TFileProperty::GetStringLastModification(), TRun::GetStringRunID(), TSoftwareClockModule::GetStringTime(), TFileProperty::GetStringUserID(), TRecordDisplayPreference::GetStyleName(), TUtilities::GetSubMatch(), TRegularExpression::GetSubMatch(), TRecordDisplayTab::GetTab(), TRecordDisplayTab::GetTabText(), TOutputHtmlFileStream::GetTitle(), TSystemTimer::GetUnit(), TArgument::GetUsage(), TRunInformationTable::GetValue(), TRunInformation::GetValue(), TAnalysisManager::GoAnalysisLoop(), TRecordDisplayPreference::GuessRootOfFileName(), itostr(), ltostr(), TRegularExpression::MatchString(), TRegularExpression::MatchStrings(), TUserInterface::ModifyPath(), TTerminalUserInterface::nextCommand(), TDataElement::operator!=(), TSystemLogging::operator<<(), operator<<(), TCamacCrateController::operator=(), TDataElement::operator==(), TArgument::operator[](), TTerminalUserInterface::previousCommand(), TRecordDisplay::Print(), TRs232cModule::Read(), TTerminalUserInterface::readLine(), TMacroFileParser::ReadLine(), TInputObjectFile::readProperties(), TStringStreamBuffer::ReceiveString(), TRunInformationTable::Remove(), TAnalysisStatusTable::RemoveAnalysisStatus(), TUserInterface::RemoveCommand(), TAnalyser::RemoveExtractor(), TCrate::RemoveModule(), TReadoutBook::RemoveReadoutList(), TEnvironmentVariableTable::ResetEnvironment(), TRecordDisplayPreference::RootFile(), TRecordDisplay::Save(), TDataElement::Serialize(), TRunManager::SessionStart(), TAnalysisManager::SetAnalyser(), TAnalysisManager::SetAnalysisAction(), TRunManager::SetAnalysisManager(), TRunManager::SetCrateDefinition(), TUserInterface::SetCurrentWorkingDirectory(), TEventManager::SetEventAction(), TRunManager::SetEventManager(), TSystemLogging::SetID(), TRunManager::SetReadoutBookDefinition(), TRunManager::SetRunAction(), TRunInformationTable::SetRunInformation(), TRunManager::SetRunInformationModule(), TEventManager::SetStackSize(), TAnalysisStatusTable::SetStatus(), TRunManager::SetSystemAction(), TAnalysisStatusTable::SetThreadID(), TRunManager::SetUserInterface(), TCommandTable::Sort(), TRegularExpression::Split(), TRecordDisplay::Start(), TAnalysisManager::StopAnalysis(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), submatch(), subst(), TUtilities::Substitute(), TRegularExpression::Substitute(), TUtilities::SubstituteAll(), TRegularExpression::SubstituteAll(), TArgument::TArgument(), TCamacCrateController::TCamacCrateController(), TDataRecord::Test(), TObjectSharedMemory::TObjectSharedMemory(), TRecordDisplay::TRecordDisplay(), TUserInterface::TUserInterface(), ultostr(), TSoftwareDataFileModule::Update(), TAnalysisManager::UpdateAnalysis(), TSystemClock::WhatTimeIsIt(), TSoftwareClockModule::WhatTimeIsIt(), TSystemTimer::WhatTimeIsItNow(), TSystemClock::WhatTimeIsItNow(), TSoftwareClockModule::WhatTimeIsItNow(), TSystemClock::WhenAllocated(), TSystemClock::WhenUpdate(), TAnalyser::~TAnalyser(), TAnalysisManager::~TAnalysisManager(), TEventManager::~TEventManager(), と TRunManager::~TRunManager().

typedef Tvector<Tstring> TstringList
 

rootmodules/IO/Ttypes.h92 行で定義されています。

呼出 TCommandTable::AlreadyExistDirectory(), TCrate::Clear(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeCommand(), TTerminalUserInterface::completeDirectory(), TTerminalUserInterface::divide(), TRunManager::divide(), TExecuteCommand::doExecute(), TUserInterface::ExecuteCommand(), TMacroFileParser::GetArguments(), TCommandTable::GetCommandList(), TSoftwareDataFileModule::GetCommentStringList(), TMacroFileParser::GetCommentStringList(), TCommandTable::GetDirectoryList(), TArgument::GetElements(), TModuleSpecified::GetGroupIDs(), TEnvironmentVariableTable::GetItemList(), TOptionMap::GetParameterList(), TRunInformation::GetSelectableList(), TUtilities::GetSubMatch(), TRegularExpression::GetSubMatch(), TEnvironmentVariableTable::GetValueList(), TCrate::Initialize(), TCrate::InstallModule(), TModuleSpecified::IsSameGroup(), TCommandTable::List(), TRegularExpression::MatchStrings(), TMacroFileParser::ReadLine(), TRunManager::SessionStart(), TEnvironmentVariableTable::SetEnvironment(), TCommandTable::Sort(), split(), TUtilities::Split(), TRegularExpression::Split(), submatch(), TEnvironmentVariableTable::TEnvironmentVariableTable(), TReadoutSegment::TReadoutSegment(), と TCrate::Update().

typedef unsigned char TUchar
 

rootmodules/IO/Ttypes.h67 行で定義されています。

typedef unsigned int TUint
 

rootmodules/IO/Ttypes.h68 行で定義されています。

呼出 TDataElement::Deserialize(), TRunTimeLimitCommand::Execute(), TCamacModule::execute(), TCamacModule::GetCamacData(), TInputObjectFile::getDataElement(), TDataElement::GetRecordSize(), TDataElement::GetUnsignedIntData(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TRunManager::PopupLogo(), TDataElement::Serialize(), TRunManager::showLogo(), TRunManager::ShowStatus(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), TCamacModule::WaitInterrupt(), TCamacModule::Write(), と TCamacInterruptRegisterModule::WriteInterruptMaskRegister().

typedef Tvector<TUint> TUintList
 

rootmodules/IO/Ttypes.h88 行で定義されています。

typedef unsigned long TUlong
 

rootmodules/IO/Ttypes.h69 行で定義されています。

呼出 TDataElement::Deserialize(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TInputObjectFile::getDataElement(), TDataElement::GetRecordSize(), TDataElement::GetUnsignedLongData(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TRunManager::PopupLogo(), TDataElement::Serialize(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), と TAnalysisManager::UpdateAnalysis().

typedef unsigned short TUshort
 

rootmodules/IO/Ttypes.h71 行で定義されています。

呼出 TVmeRpv130Module::Clear(), TVmeMpx201aModule::Clear(), TDataElement::Deserialize(), TVmeRpv130Module::Disable(), TVmeMpx201aModule::DisableAccessToDaughterBoard(), TVmeMpx201aModule::DisableAcquisition(), TVmeMpx201aModule::DisableSystemFailure(), TVmeRpv130Module::Enable(), TVmeMpx201aModule::EnableAccessToDaughterBoard(), TVmeMpx201aModule::EnableAcquisition(), TVmeMpx201aModule::EnableSystemFailure(), TVmeRpv130Module::FillData(), TVmeMpx201aModule::FillData(), TSoftwareFlashAdcModule::FillData(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TVmeModule::getBit(), TInputObjectFile::getDataElement(), TVmeMpx201aModule::GetEventSynchronisationMode(), TDataElement::GetRecordSize(), TDataElement::GetUnsignedShortData(), TVmeMpx201aModule::IsDataOverFlow(), TVmeMpx201aModule::IsMemoryBlockFull(), TVmeRpv130Module::Level(), TVmeRpv130Module::LevelDown(), TVmeRpv130Module::LevelUp(), TDataElement::operator!=(), operator<<(), TDataElement::operator==(), TVmeRpv130Module::Pulse(), TVmeRpv130Module::Read(), TVmeMpx201aModule::Read(), TVmeMpx201aModule::Reset(), TDataElement::Serialize(), TVmeModule::setBit(), TVmeMpx201aModule::SetBufferOrientation(), TVmeMpx201aModule::SetDataCaptureMode(), TVmeMpx201aModule::SetDataOverFlowFlag(), TVmeMpx201aModule::SetEventSynchronisationMode(), TVmeMpx201aModule::SetMemoryBlockFullFlag(), TVmeMpx201aModule::SetScanCompleteFlag(), TVmeModule::showBit(), TDataElement::StorePrimitive(), TDataElement::StorePrimitives(), と TDataRecord::Test().

typedef Tvector<TUshort> TUshortList
 

rootmodules/IO/Ttypes.h89 行で定義されています。

typedef void Tvoid
 

rootmodules/IO/Ttypes.h76 行で定義されています。

呼出 TAnalysisStatusTable::AddAnalysisStatus(), TRecordAssociationTable::AddAssociation(), TSystemLogging::AddBuffer(), TCommandTable::AddCommand(), TModuleTable::AddModule(), TOptionMap::AddOption(), TReadoutIndex::AddReadoutList(), TRunInformationTable::AddRunInformation(), TAnalyser::allocate(), TFileProperty::Analyse(), TArgument::Analyse(), TRecordDisplay::Associate(), TEventAction::AtFirst(), TEventAction::AtLast(), TObjectSharedMemory::Attach(), TRecordDisplay::AutoBuild(), TTerminalUserInterface::backspaceCharacter(), TTerminalUserInterface::backwardCursor(), TAnalysisAction::BeginOfAnalysisAction(), TSystemAction::Boot(), TRecordDisplay::Browse(), TRecordDisplayTab::Build(), TRecordDisplayMenuBar::Build(), TRecordDisplayCanvas::Build(), TRecordDisplay::Build(), TRecordDisplay::BuildMenuBar(), TRecordDisplay::BuildTabFrame(), TRunManager::catchAlarmSignal(), TSystemAction::CatchLog(), TSystemAction::CatchStandardError(), TSystemAction::CatchStandardOut(), TRunInformationTable::Clear(), TRunInformation::Clear(), TRun::Clear(), TRecordDisplayCanvas::Clear(), TRecordDisplay::Clear(), TReadoutIndex::Clear(), TModuleTable::Clear(), TEventManager::Clear(), TEvent::Clear(), TDataSegment::Clear(), TDataSection::Clear(), TDataRecord::Clear(), TDataElement::Clear(), TCrate::Clear(), TCommandTable::Clear(), TAnalysisStatusTable::Clear(), TTerminalUserInterface::clearAfterCursor(), TCrate::ClearAllModules(), TSystemLogging::ClearBuffer(), TUserInterface::ClearCommands(), TCrate::ClearCrate(), TEnvironmentVariableTable::ClearEnvironment(), TEventManager::ClearEventStack(), TAnalyser::ClearExtractorList(), TTerminalUserInterface::clearLine(), TCrate::ClearModule(), TReadoutBook::ClearReadoutBook(), TUserInterface::ClearScreen(), TTerminalUserInterface::clearScreen(), TSystemLogging::Close(), TOutputHtmlFileStream::Close(), TMacroFileParser::Close(), TCamacCrateController::Close(), TRegularExpression::Compile(), TTerminalUserInterface::complete(), TTerminalUserInterface::completeCommand(), TTerminalUserInterface::completeDirectory(), TDataDeflation::Compress(), TBenchmark::Continue(), TTerminalUserInterface::cutCharacter(), TDataInflation::Decompress(), TRs232cKeithley7702Module::defineClearMethod(), TRs232cKeithley2700Module::defineClearMethod(), TRs232cKeithley2400Module::defineClearMethod(), TRs232cKeithley7702Module::defineInitializeMethod(), TRs232cKeithley2700Module::defineInitializeMethod(), TRs232cKeithley2400Module::defineInitializeMethod(), TRs232cKeithley7702Module::defineReadMethod(), TRs232cKeithley2700Module::defineReadMethod(), TRs232cKeithley2400Module::defineReadMethod(), TRs232cKeithley7702Module::defineUpdateMethod(), TRs232cKeithley2700Module::defineUpdateMethod(), TRs232cKeithley2400Module::defineUpdateMethod(), TTerminalUserInterface::deleteCharacter(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TObjectSharedMemory::Detach(), TVmeRpv130Module::Disable(), TSignalHandler::Disable(), TVmeMpx201aModule::DisableAccessToDaughterBoard(), TVmeMpx201aModule::DisableAcquisition(), TVmeMpx201aModule::DisableSystemFailure(), TAnalysisManager::doAnalysisLoop(), TRs232cModule::DoClearMethod(), TRunManager::doEventLoop(), TExecuteCommand::doExecute(), TRs232cModule::DoInitializeMethod(), TRs232cModule::DoUpdateMethod(), TRecordDisplay::Edit(), TVmeRpv130Module::Enable(), TSignalHandler::Enable(), TVmeMpx201aModule::EnableAccessToDaughterBoard(), TVmeMpx201aModule::EnableAcquisition(), TVmeMpx201aModule::EnableSystemFailure(), TAnalysisAction::EndOfAnalysisAction(), TWaitCommand::Execute(), TUnsetEnvironmentVariableCommand::Execute(), TUnaliasCommand::Execute(), TSystemShutdownCommand::Execute(), TSourceCommand::Execute(), TSleepCommand::Execute(), TShowRunManagerCommand::Execute(), TShowRunInformationModuleCommand::Execute(), TShowNetworkStatusCommand::Execute(), TShowEventManagerCommand::Execute(), TShowAnalysisManagerCommand::Execute(), TShellCommand::Execute(), TSetStackSizeCommand::Execute(), TSetRunInformationModuleCommand::Execute(), TSetRunIdCommand::Execute(), TSetEnvironmentVariableCommand::Execute(), TRunTimeLimitCommand::Execute(), TRunSuspendCommand::Execute(), TRunStopCommand::Execute(), TRunStartCommand::Execute(), TRunResumeCommand::Execute(), TRunEventLimitCommand::Execute(), TReadFileCommand::Execute(), TQuitCommand::Execute(), TPrintWarrantyCommand::Execute(), TPrintEnvironmentVariableCommand::Execute(), TPrintCurrentWorkingDirectoryCommand::Execute(), TPrintAuthorInformationCommand::Execute(), TPrintAllEnvironmentVariablesCommand::Execute(), TPopupLogoCommand::Execute(), TPopdownLogoCommand::Execute(), TListCommand::Execute(), TInitializeRunInformationModuleCommand::Execute(), THelpCommand::Execute(), TExitCommand::Execute(), TExecuteCommand::Execute(), TDateCommand::Execute(), TCommand::Execute(), TClearRunInformationModuleCommand::Execute(), TChangeDirectoryCommand::Execute(), TAnalysisSuspendCommand::Execute(), TAnalysisStopCommand::Execute(), TAnalysisStartCommand::Execute(), TAnalysisResumeCommand::Execute(), TAliasCommand::Execute(), TAddRunInformationModuleCommand::Execute(), TUserInterface::ExecuteCommand(), TVmeRpv130Module::FillData(), TVmeMpx201aModule::FillData(), TVmeDaughterBoardMemoryModule::FillData(), TSoftwareTimerModule::FillData(), TSoftwareScalerModule::FillData(), TSoftwareRunInformationModule::FillData(), TSoftwareInterruptRegisterModule::FillData(), TSoftwareFlashAdcModule::FillData(), TSoftwareDataFileModule::FillData(), TSoftwareClockModule::FillData(), TSoftwareAdcModule::FillData(), TRs232cModule::FillData(), TDataElement::FillData(), TCamacSwitchRegisterModule::FillData(), TCamacScalerModule::FillData(), TCamacOutputRegisterModule::FillData(), TCamacInterruptRegisterModule::FillData(), TCamacCrateController::FillData(), TCamacCoincidenceRegisterModule::FillData(), TCamacAdcModule::FillData(), TSoftwareAdcModule::fillGaussian(), TExtractor::FillMatrix(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TExtractor::fillMatrixAsNtuple(), TSoftwareFlashAdcModule::fillValue(), TDecompressObjectFilter::Filtering(), TCompressObjectFilter::Filtering(), TOutputObjectFilter::Finalize(), TInputObjectFilter::Finalize(), TDecompressObjectFilter::Finalize(), TCompressObjectFilter::Finalize(), TTerminalUserInterface::forwardCursor(), TAnalyser::free(), TObjectSharedMemory::GetAddress(), TObjectSharedMemory::GetBaseAddress(), TDataElement::GetData(), TDataDeflation::GetDeflatedData(), TDataInflation::GetInflatedData(), TSoftwareAdcModule::GetRandomType(), TAnalysisManager::GoAnalysisLoop(), TRunManager::GoEventLoop(), TRecordDisplayPreference::GuessRootOfFileName(), TRegularExpression::IgnoreCase(), TSignalHandler::Initialize(), TRecordDisplay::Initialize(), TOutputObjectFilter::Initialize(), TInputObjectFilter::Initialize(), TDecompressObjectFilter::Initialize(), TCrate::Initialize(), TCompressObjectFilter::Initialize(), TCrate::InitializeAllModules(), TTerminalUserInterface::initializeCommandLine(), TCrate::InitializeModule(), TTerminalUserInterface::insertCharacter(), TRunManager::installDefaultCommand(), TSystemTimer::Lap(), TSoftwareTimerModule::Lap(), TBenchmark::Lap(), TVmeRpv130Module::Level(), TVmeRpv130Module::LevelDown(), TVmeRpv130Module::LevelUp(), TCommandTable::List(), TInputObjectFileOnline::MicroSleep(), TRecordDisplayCanvas::Move(), TTerminalUserInterface::moveCursorEnd(), TTerminalUserInterface::moveCursorTop(), TTerminalUserInterface::nextCommand(), TVmeMpx201aModule::NextEventProcedure(), TUserInterface::NotFoundCommand(), TTerminalUserInterface::NotFoundCommand(), TQtUserInterface::NotFoundCommand(), TGtkUserInterface::NotFoundCommand(), TBrowserUserInterface::NotFoundCommand(), TAnalyser::NotFoundExtractor(), TSystemLogging::Open(), TRecordDisplay::Open(), TOutputHtmlFileStream::Open(), TMacroFileParser::Open(), TCamacCrateController::Open(), TVmeModule::operator=(), TTerminalUserInterface::pasteCharacter(), TSystemTimer::Pause(), TSoftwareTimerModule::Pause(), TRecordDisplay::Pause(), TBenchmark::Pause(), TRunManager::PopdownLogo(), TRunManager::PopupLogo(), TRecordDisplay::Preferences(), TTerminalUserInterface::previousCommand(), TRecordDisplay::Print(), TRecordDisplay::PrintAs(), TRunManager::PrintAuthorInformation(), TBenchmark::PrintResult(), TVmeRpv130Module::Pulse(), TRecordDisplay::Quit(), TInputObjectSharedMemory::Read(), TInputObjectFile::readProperties(), TStringStreamBuffer::ReceiveString(), TSystemLogging::Record(), TRunInformationTable::Remove(), TAnalysisStatusTable::RemoveAnalysisStatus(), TCommandTable::RemoveCommand(), TModuleTable::RemoveModule(), TReadoutIndex::RemoveReadoutList(), TVmeMpx201aModule::Reset(), TEnvironmentVariableTable::ResetEnvironment(), TTerminalUserInterface::resetTerminal(), TSystemTimer::Restart(), TSoftwareTimerModule::Restart(), TBenchmark::Restart(), TRunAction::Resume(), TAnalysisManager::ResumeAnalysis(), TRunManager::ResumeRun(), TRecordDisplay::Save(), TRecordDisplay::SaveAs(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), TDataElement::Serialize(), TRunManager::SessionStart(), TCommandSpecified::SetAbsolutePath(), TTerminalUserInterface::SetAcceptString(), TObjectSharedMemory::SetAddress(), TAnalysisManager::SetAnalyser(), TAnalyser::SetAnalyserID(), TAnalysisManager::SetAnalysisAction(), TRunManager::SetAnalysisManager(), TAnalysisCommand::SetAnalysisManager(), TOption::SetArgumentStyle(), TRecordAssociationTable::SetAssociationList(), TVmeModule::SetBaseAddress(), TVmeModule::setBit(), TSoftwareDataFileModule::SetBufferLength(), TVmeMpx201aModule::SetBufferOrientation(), TCommandSpecified::SetBuiltinFlag(), TCamacModule::SetCamacData(), TRecordAssociationTable::SetCanvas(), TRecordAssociation::SetCanvas(), TAnalysisStatus::SetCanvasID(), TRecordDisplayPreference::SetCanvasLayoutHint(), TSoftwareScalerModule::SetChannel(), TSoftwareDataFileModule::SetChannel(), TSoftwareAdcModule::SetChannel(), TReadoutElement::SetChannelNumber(), TCommandSpecified::SetCommand(), TTerminalUserInterface::SetCommandBuffer(), TUserInterface::SetCommandHistory(), TTerminalUserInterface::SetCommandHistoryIndex(), TCommand::SetCommandName(), TUserInterface::SetCommandTable(), TSoftwareDataFileModule::SetCommentStringList(), TMacroFileParser::SetCommentStringList(), TDataDeflation::SetCompressionLevel(), TRunAction::SetCrate(), TReadoutBookDefinition::SetCrate(), TEventAction::SetCrate(), TCamacCrateController::SetCrateControllerType(), TRunManager::SetCrateDefinition(), TCamacCrateController::SetCrateID(), TObjectSharedMemory::SetCurrentPositionOfMemorySpace(), TUserInterface::SetCurrentWorkingDirectory(), TTerminalUserInterface::SetCursorPosition(), TSoftwareScalerModule::SetData(), TSoftwareAdcModule::SetData(), TDataElement::SetData(), TVmeMpx201aModule::SetDataCaptureMode(), TCamacModule::SetDataLength(), TVmeMpx201aModule::SetDataOverFlowFlag(), TEvent::SetDataRecord(), TObjectStream::SetDataSize(), TRecordDisplayPreference::SetDefaultMaximumX(), TRecordDisplayPreference::SetDefaultMinimumX(), TRecordDisplayPreference::SetDefaultNumberOfBins(), TOptionTable::SetDefaultOption(), TRunInformation::SetDefaultValue(), TOption::SetDescription(), TRs232cModule::SetDeviceFile(), TCommandSpecified::SetDirectoryDepth(), TAnalysisStatus::SetDrawableObjectID(), TRecordAssociation::SetElementID(), TDataElement::SetElementType(), TRecordDisplayPreference::SetEndOfRecordID(), TEnvironmentVariableTable::SetEnvironment(), TRunManager::SetEnvironmentVariableTable(), TEventManager::SetEvent(), TRunManager::SetEventAction(), TEventManager::SetEventAction(), TEvent::SetEventID(), TRunManager::SetEventLimit(), TRunManager::SetEventManager(), TRunAction::SetEventManager(), TEventAction::SetEventManager(), TRun::SetEventStack(), TVmeMpx201aModule::SetEventSynchronisationMode(), TAnalysisManager::SetExtractor(), TExtractor::SetExtractorID(), TAnalyser::SetExtractorIndex(), TSystemLogging::SetFacility(), TVmeModule::SetFileDescriptor(), TRs232cModule::SetFileDescriptor(), TCamacCrateController::SetFileDescriptor(), TSoftwareDataFileModule::SetFileName(), TObjectFile::SetFileName(), TSoftwareInterruptRegisterModule::SetFrequency(), TCommandSpecified::SetFullName(), TModuleSpecified::SetGroupIDs(), TCommand::SetGuidance(), TRecordAssociationTable::SetHistogram(), TRecordAssociation::SetHistogram(), TSystemLogging::SetID(), TStreamableObject::SetID(), TReadoutIdentification::SetID(), TAnalysisStatus::SetID(), SetInformation(), TRunInformation::SetInformationType(), TSoftwareInterruptRegisterModule::SetInterruptMaskRegister(), TSoftwareInterruptRegisterModule::SetInterruptRegister(), TRunInformation::SetItem(), TEventManager::SetLastAccessID(), TObjectStream::SetLastDataSize(), TSystemLogging::SetLevel(), TVmeRpv130Module::SetLevelStatus(), TReadoutSpecified::SetListID(), TStringStreamBuffer::SetLogLevel(), TOption::SetLongOption(), TMacroFileParser::SetMacroFileName(), TVmeModule::SetMappedSize(), TExtractor::SetMatrixElement(), TMatrixElement::SetMatrixID(), TObjectSharedMemory::SetMaxEvent(), TRecordAssociationTable::SetMaximumX(), TRecordAssociation::SetMaximumX(), TSoftwareAdcModule::SetMean(), TVmeMpx201aModule::SetMemoryBlockFullFlag(), TObjectSharedMemory::SetMemorySize(), TRecordDisplayPreference::SetMenuBarLayoutHint(), TSystemLogging::SetMessageBuffer(), TInputObjectFileOnline::SetMicroSleepTime(), TRecordAssociationTable::SetMinimumX(), TRecordAssociation::SetMinimumX(), TObjectFile::SetMode(), TReadoutSegment::SetModule(), TReadoutElement::SetModule(), TModuleSpecified::SetModule(), TModuleSpecified::SetModuleID(), TCrate::SetModuleTable(), TCommandSpecified::SetName(), TRecordAssociationTable::SetNumberOfBins(), TRecordAssociation::SetNumberOfBins(), TVmeMpx201aModule::SetNumberOfBlock(), TModule::SetNumberOfChannels(), TEventManager::SetNumberOfEvents(), TSoftwareDataFileModule::SetNumberOfLine(), TDataElement::SetNumberOfPrimitives(), TVmeDaughterBoardMemoryModule::SetNumberOfSampling(), TSoftwareFlashAdcModule::SetNumberOfSampling(), TOutputObjectStream::SetObjectFilter(), TInputObjectStream::SetObjectFilter(), TStreamableObject::SetObjectType(), TMatrixElement::SetObjectType(), TAnalysisStatus::SetObjectType(), TObjectFile::SetOffset(), TVmeModule::SetOffsetAddress(), TVmeMpx201aModule::SetOffsetAddressForDaughterBoard(), TSystemLogging::SetOption(), TRegularExpression::SetOption(), TOptionTable::SetOption(), TOptionTable::SetOptionList(), TOptionMap::SetOptionList(), TDataInflation::SetOutputBuffer(), TDataDeflation::SetOutputBuffer(), TVmeMpx201aModule::SetPage(), TOptionMap::SetParameterList(), TSoftwareFlashAdcModule::setParameters(), TSoftwareAdcModule::setParameters(), TRecordDisplayComponent::SetParentFrame(), TFileProperty::SetPathName(), TRegularExpression::SetPattern(), TRecordDisplayPreference::SetPopupMenuLayoutHint(), TTerminalUserInterface::SetPrompt(), TCamacModule::SetQ(), TSoftwareAdcModule::SetRandomEngine(), TObjectSharedMemory::SetReadable(), TRunAction::SetReadoutBook(), TEventAction::SetReadoutBook(), TRunManager::SetReadoutBookDefinition(), TReadoutBook::SetReadoutIndex(), TReadoutSpecified::SetReadoutList(), TVmeRpv130Module::SetReadoutMode(), TSoftwareTimerModule::SetRealElapsedTimeTotal(), TRecordDisplayComponent::SetRecordDisplay(), TRecordAssociation::SetRecordID(), TRecordDisplayPreference::SetRootOfFileName(), TRunManager::SetRun(), TRunManager::SetRunAction(), TRunManager::SetRunClock(), TRunManager::SetRunID(), TRun::SetRunID(), TRunInformationTable::SetRunInformation(), TRunInformationTable::SetRunInformationList(), TRunManager::SetRunInformationModule(), TRunInformationModuleCommand::SetRunInformationModule(), TSoftwareRunInformationModule::SetRunInformationTable(), TRunAction::SetRunManager(), TReadoutBookDefinition::SetRunManager(), TEventAction::SetRunManager(), TCrateDefinition::SetRunManager(), TCommand::SetRunManager(), TRunManager::SetRunTimer(), TVmeMpx201aModule::SetSamplingRate(), TExtractor::SetSamplingRate(), TRecordDisplayPreference::SetSaveGifAtLast(), TRecordDisplayPreference::SetSavePsAtLast(), TRecordDisplayPreference::SetSaveRootAtLast(), TSoftwareAdcModule::SetScale(), TVmeMpx201aModule::SetScanCompleteFlag(), TRecordAssociation::SetSectionID(), TSoftwareAdcModule::SetSeed(), TRecordAssociation::SetSegmentID(), TRunInformation::SetSelectableList(), TSoftwareDataFileModule::SetSeparater(), TRs232cModule::SetSerialPort(), TObjectSharedMemory::SetSharedMemoryID(), TOption::SetShortOption(), TSoftwareAdcModule::SetSigma(), TRecordDisplayPreference::SetSleepTime(), TCamacModule::SetSlotNumber(), TEventManager::SetStackSize(), TBenchmark::SetStartTime(), TRunManager::SetStatus(), TOutputHtmlFileStream::SetStatus(), TModule::SetStatus(), TEventManager::SetStatus(), TAnalysisStatusTable::SetStatus(), TAnalysisStatus::SetStatus(), TAnalysisManager::SetStatusTable(), TBenchmark::SetStopTime(), TRecordDisplayPreference::SetStream(), TObjectStream::SetStreamType(), TTerminalUserInterface::SetStringBuffer(), TRecordDisplayPreference::SetStyleName(), TStringStreamBuffer::SetSystemAction(), TRunManager::SetSystemAction(), TSoftwareClockModule::SetSystemClock(), TDateCommand::SetSystemClock(), TSoftwareTimerModule::SetSystemTimer(), TRecordDisplayPreference::SetTabLayoutHint(), TTerminalUserInterface::setTerminalInputMode(), TRecordDisplayPreference::SetTerminateAtLast(), TAnalysisStatusTable::SetThreadID(), TAnalysisStatus::SetThreadID(), TRunManager::SetThreadOfEventLoop(), TOutputHtmlFileStream::SetTitle(), TObjectStream::SetTotalDataSize(), TVmeModule::SetTransferMode(), TSystemTimer::SetUnit(), TVmeMpx201aModule::SetupCCDmeasurement(), TRecordDisplayPreference::SetUpdateCycle(), TArgument::SetUsage(), TRunManager::SetUserInterface(), TRunInformation::SetValue(), TCamacModule::SetX(), TVmeModule::showBit(), showbit(), TUtilities::ShowBitPattern(), TCommand::ShowCommandDetail(), TArgument::ShowHelp(), TRunManager::showLogo(), TRunManager::ShowStatus(), TEventManager::ShowStatus(), TAnalysisManager::ShowStatus(), TArgument::ShowUsage(), TArgument::ShowVersion(), TSystemAction::Shutdown(), TRunManager::ShutdownRun(), TSignalHandler::signal_handler(), TSignalHandler::signal_ucr(), TSystemTimer::Start(), TSoftwareTimerModule::Start(), TRunAction::Start(), TRecordDisplay::Start(), TBenchmark::Start(), TAnalysisManager::StartAnalysis(), TRunManager::StartRun(), TSystemTimer::Stop(), TSoftwareTimerModule::Stop(), TRunAction::Stop(), TRecordDisplay::Stop(), TBenchmark::Stop(), TAnalysisManager::StopAnalysis(), TRunManager::StopRun(), TDataElement::StorePrimitive(), TRunAction::Suspend(), TAnalysisManager::SuspendAnalysis(), TRunManager::SuspendRun(), TTerminalUserInterface::suspendTerminal(), TObjectSharedMemory::TObjectSharedMemory(), TEventManager::TouchNewestEvent(), TRunManager::TRunManager(), TVmeModule::TVmeModule(), TRecordDisplay::Undo(), TEnvironmentVariableTable::UnsetEnvironment(), TRecordDisplayCanvas::Update(), TRecordDisplay::Update(), TFileProperty::Update(), TCrate::Update(), TCrate::UpdateAllModules(), TAnalysisManager::UpdateAnalysis(), TCrate::UpdateModule(), TAnalysisAction::UpdateOfAnalysisAction(), TAnalysisManager::WaitReturnFromAnalysisLoop(), と TRunManager::WaitReturnFromEventLoop().


Enum の解説

anonymous enum
 

Enum 値:
tIDunknown 

rootmodules/IO/Ttypes.h184 行で定義されています。

enum Telement_t
 

Enum 値:
tTypeInt 
tTypeString 
tTypeDouble 
tTypeObject 
tTypeFloat 
tTypeUnsignedShort 
tTypeShort 
tTypeWord 
tTypeLong 
tTypeUnsignedLong 
tTypeUnsignedInt 
tNumberOfElementTypes 
tTypeUnknown 

rootmodules/IO/Ttypes.h120 行で定義されています。

呼出 TDataElement::Deserialize(), TExtractor::fillMatrixAs1DHistogram(), TExtractor::fillMatrixAs2DHistogram(), TExtractor::fillMatrixAsGraph(), TInputObjectFile::getDataElement(), TDataElement::GetElementType(), TDataElement::GetRecordSize(), と TDataElement::Serialize().

enum Tobject_t
 

Enum 値:
tObjectDataRecord 
tObjectDataSection 
tObjectDataSegment 
tObjectDataElement 
tObject1DHistogram 
tObject2DHistogram 
tObjectAppendGraph 
tObjectSubstituteGraph 
tObjectNtuple 
tNumberOfObjectTypes 
tObjectUnknown 

rootmodules/IO/Ttypes.h106 行で定義されています。

呼出 TAnalyser::AddExtractor(), TDataSegment::Deserialize(), TDataSection::Deserialize(), TDataRecord::Deserialize(), TDataElement::Deserialize(), TDecompressObjectFilter::Filtering(), TObjectFile::FindDataRecord(), TInputObjectFile::getDataElement(), TInputObjectFile::getDataRecord(), TInputObjectFile::getDataSection(), TInputObjectFile::getDataSegment(), TStreamableObject::GetObjectType(), TMatrixElement::GetObjectType(), TAnalysisStatusTable::GetObjectType(), TAnalysisStatus::GetObjectType(), TDataSegment::GetRecordSize(), TDataSection::GetRecordSize(), TDataRecord::GetRecordSize(), TDataElement::GetRecordSize(), TInputObjectSocket::Read(), TInputObjectSharedMemory::Read(), TInputObjectFileOnline::Read(), TInputObjectFile::Read(), TInputObjectFile::readProperties(), TDataSegment::Serialize(), TDataSection::Serialize(), TDataRecord::Serialize(), と TDataElement::Serialize().

enum Trandom_t
 

Enum 値:
tRandomExponential 
tRandomGaussian 
tRandomChiSquare 
tRandomLandau 
tRandomGamma 
tRandomPoisson 
tNumberOfRandomTypes 
tRandomUnknown 

rootmodules/IO/Ttypes.h144 行で定義されています。

呼出 TSoftwareAdcModule::GetRandomType().

enum Tstatus_t
 

Enum 値:
tStatusStandby 
tStatusReady 
tStatusBusy 
tStatusIdle 
tStatusWaitingReady 
tStatusJustTakingEvent 
tStatusJustRecordingEvent 
tStatusSleep 
tStatusDead 
tNumberOfStatusTypes 
tStatusUnknown 

rootmodules/IO/Ttypes.h155 行で定義されています。

呼出 TRunManager::catchAlarmSignal(), TExitCommand::Execute(), TRunManager::GetStatus(), TEventManager::GetStatus(), TAnalysisStatusTable::GetStatus(), TAnalysisStatus::GetStatus(), TAnalysisManager::SuspendAnalysis(), と TAnalysisManager::UpdateAnalysis().

enum Tstream_t
 

Enum 値:
tFileStream 
tSocketStream 
tSharedMemoryStream 
tNumberOfStreamTypes 
tUnknownStream 

rootmodules/IO/Ttypes.h136 行で定義されています。

呼出 TCompressObjectFilter::Finalize(), TObjectStream::GetStreamType(), TDecompressObjectFilter::Initialize(), TCompressObjectFilter::Initialize(), TDataSegment::Record(), TDataSection::Record(), TDataRecord::Record(), と TDataElement::Record().

enum TvmeTransfer_t
 

Enum 値:
tA16D16 
tA16D32 
tA24D16 
tA24D32 
tA32D16 
tA32D32 
tA24D16dma 
tA32D16dma 
tA24D32dma 
tA32D32dma 
tNumberOfVmeTransferModes 
tTransferModeUnknown 

rootmodules/IO/Ttypes.h169 行で定義されています。

呼出 TVmeModule::GetTransferMode().


変数の解説

const Tstring Thour = "h"
 

rootmodules/IO/Ttypes.h98 行で定義されています。

呼出 TSystemClock::GetElapsedTime(), と TSystemClock::GetElapsedTimeOfLastUpdate().

const Tchar Tkey = '\x01'
 

rootmodules/IO/Ttypes.h104 行で定義されています。

呼出 TObjectSharedMemory::TObjectSharedMemory().

const Tstring Tmin = "m"
 

rootmodules/IO/Ttypes.h99 行で定義されています。

呼出 TSystemClock::GetElapsedTime(), と TSystemClock::GetElapsedTimeOfLastUpdate().

const Tstring Tmsec = "ms"
 

rootmodules/IO/Ttypes.h101 行で定義されています。

呼出 TSystemTimer::GetRealElapsedTime(), TSystemTimer::GetSystemElapsedTime(), TSystemTimer::GetTotalIdlingTime(), TSystemTimer::GetTotalRunningTime(), TSystemTimer::GetUserElapsedTime(), と TSystemTimer::SetUnit().

const Tstring Tnsec = "ns"
 

rootmodules/IO/Ttypes.h103 行で定義されています。

呼出 TSystemTimer::GetRealElapsedTime(), TSystemTimer::GetSystemElapsedTime(), TSystemTimer::GetTotalIdlingTime(), TSystemTimer::GetTotalRunningTime(), TSystemTimer::GetUserElapsedTime(), と TSystemTimer::SetUnit().

const Tstring Tsec = "s"
 

rootmodules/IO/Ttypes.h100 行で定義されています。

呼出 TSystemTimer::GetRealElapsedTime(), TSystemTimer::GetSystemElapsedTime(), TSystemTimer::GetTotalIdlingTime(), TSystemTimer::GetTotalRunningTime(), TSystemTimer::GetUserElapsedTime(), と TSystemTimer::SetUnit().

const Tstring Tslash = "/"
 

rootmodules/IO/Ttypes.h96 行で定義されています。

呼出 TReadFileCommand::Execute(), operator<<(), と TUserInterface::TUserInterface().

const Tstring Ttab = "\t"
 

rootmodules/IO/Ttypes.h97 行で定義されています。

呼出 operator<<(), TRunManager::ShowStatus(), と TEventManager::ShowStatus().

const Tstring TunknownID = "unkown ID"
 

rootmodules/IO/Ttypes.h188 行で定義されています。

呼出 TDataSegment::Clear(), TDataSection::Clear(), TDataRecord::Clear(), TDataElement::Clear(), と TReadoutElement::TReadoutElement().

const Tstring Tusec = "us"
 

rootmodules/IO/Ttypes.h102 行で定義されています。

呼出 TSystemTimer::GetRealElapsedTime(), TSystemTimer::GetSystemElapsedTime(), TSystemTimer::GetTotalIdlingTime(), TSystemTimer::GetTotalRunningTime(), TSystemTimer::GetUserElapsedTime(), と TSystemTimer::SetUnit().



CLDAQ - a Class Library for DataAcQuisition (Version 1.14.3)
Go IWAI -- goiwai at users.sourceforge.jp