#include <TApi.h>
Collaboration diagram for TApi:
Public Member Functions | |
TApi (std::string plugin="xml") | |
Constructor. | |
~TApi () | |
Destructor. | |
void | initialiseAll (int runNumber) |
Initialise all the Rods and modules found in the configuration. | |
void | shutdownAll () |
Shutdown everything. | |
void | setRunNumber (int newRun) |
Change the run number. | |
void | setScanNumber (int newScan) |
Change the scan number. | |
void | changeRunMode (enum SctApi::RunType mode) |
Change global run mode. | |
void | echo (unsigned int rod, unsigned int length, unsigned long *data) |
Using a primitive, send some data to the ROD. | |
void | echoAll (unsigned int length, unsigned long *data) |
Using a primitive, send some data to the ROD. | |
void | echoSlave (unsigned int rod, unsigned int slave, unsigned int length, unsigned long *data) |
Using a primitive, send some data to the ROD. | |
void | loadConfiguration () |
Reload configuration from the "configuration database". | |
void | loadModuleConfigurations () |
Load module configurations from the "configuration database". | |
void | configureBOC (unsigned int rod) |
Reset BOC configuration. | |
void | awaitResponse (unsigned int rod, int timeout=5) |
Wait for a ROD to finish a primlist. | |
unsigned long * | getResponse (unsigned int rod) |
Get a response from the rod. | |
unsigned long * | getResponse (unsigned int rod, unsigned long *length) |
Get a response from the rod. | |
bool | getRodMessage (unsigned int rod, char *buffer, unsigned long &length) |
Get a message from a ROD text buffer Returns whether the action was completed. | |
void | flashLED (unsigned int rod, long slaveNumber, long period=1000, long flashes=10) |
This creates its own primitive list and sends it to a slave DSP on the ROD. | |
void | status () |
Int_t | dspBlockDump (unsigned int rod, long dspStart, long numWords, long dspNumber, bool usePrimitive=true) |
Dump contents of a block of DSP memory to cout. | |
Int_t | dspBlockDumpFile (unsigned int rod, long dspStart, long numWords, long dspNumber, const char *filename, bool usePrimitive=true) |
Dump contents of a block of DSP memory to a file. | |
unsigned long * | dspBlockRead (unsigned int rod, long dspStart, long numWords, long dspNumber, unsigned long *length, bool usePrimitive=true) |
Read data. | |
int | dspBlockWrite (unsigned int rod, unsigned long *buffer, unsigned long dspAddress, long numWords, long dspNumber, bool usePrimitive=true) |
Write a block of memory to a ROD DSP. | |
unsigned long | readRodStatusReg (unsigned int rod, long regNumber) |
Read one ROD Status Register via HPI. | |
unsigned long | readRodCommandReg (unsigned int rod, long regNumber) |
Read one ROD Command Register via HPI. | |
unsigned long | dspSingleRead (unsigned int rod, const unsigned long dspAddr, long dspNumber) |
Read a single 32b word from MasterDSP SDRAM via HPI. | |
void | dspSingleWrite (unsigned int rod, unsigned long dspAddr, unsigned long value, long dspNumber) |
Write a single 32b word to MasterDSP SDRAM via HPI. | |
void | createDebugPrimList () |
Create a prim list. | |
void | addDebugPrimList (unsigned long length, long index, long id, long version, unsigned long *body) |
Insert a primitive in a prim list. | |
void | sendDebugPrimList (unsigned int rod) |
Send the previously created prim list. | |
void | sendDebugPrimListAll () |
Send the previously created prim list to all RODs. | |
void | sendDebugSlavePrimList (unsigned int rod, unsigned int slave, bool await, bool response) |
Send prim list to slave. | |
void | debugPrimListFromFile (const char *fileName) |
void | dumpDebugPrimList () |
std::list< SctApi::RodLabel > | listRods () |
unsigned long * | retrieveModule (UINT32 mid) |
Return the module configuration data for the required module. | |
UINT32 | findModule (const char *sn) |
UINT32 | findModule (INT32 mur, INT32 module) |
Return unique identifier for mur/module. | |
UINT32 | findBarrelModule (INT32 barrel, INT32 row, INT32 number) |
Return unique identifer from barrel geometry. | |
UINT32 | findEndcapModule (INT32 disk, INT32 ring, INT32 number) |
Return unique identifer from endcap geometry. | |
void | getABCDModules (UINT32 bank) |
Get all modules from ROD to memory. | |
void | getABCDModule (UINT32 mid, UINT32 bank) |
Get module from ROD to memory. | |
void | setABCDModules (UINT32 bank) |
Set all module configs in a ROD bank. | |
void | copyABCDModules (UINT32 source, std::list< UINT32 > targets) |
Copy all module config between banks. | |
void | copyABCDModules (UINT32 mid, UINT32 source, std::list< UINT32 > targets) |
Copy a single module config between banks. | |
void | setABCDModules (std::list< UINT32 > banks) |
void | setABCDModule (UINT32 mid, UINT32 bank) |
Set module config in ROD bank. | |
void | sendABCDModule (UINT32 mid, UINT32 bank, UINT32 type=SctApi::SCTAPI_CONFIG_ALL) |
void | sendABCDModules (UINT32 bank, UINT32 type=SctApi::SCTAPI_CONFIG_ALL) |
void | modifyABCDMask (UINT32 mid, UINT32 *mask) |
Modify mask of module in online configuration. | |
void | modifyABCDTrims (UINT32 mid, UINT8 *trims) |
Modify trims of module in online configuration. | |
void | setAutoUpdateBanks (std::list< UINT32 > banks) |
update these banks when doing modifyABCDVar | |
void | setAutoUpdateBank (UINT32 bank) |
update this bank when doing modifyABCDVar | |
void | modifyABCDVar (UINT32 typ, FLOAT32 var) |
Modify variable of all modules in online configuration. | |
void | modifyABCDVar (UINT32 mid, UINT32 typ, FLOAT32 var) |
Modify variable of module in online configuration. | |
void | modifyABCDVar (UINT32 mid, UINT32 c, UINT32 typ, FLOAT32 var) |
Modify variable of one chip of module in online configuration. | |
void | modifyABCDVarROD (UINT32 mid, UINT32 chip, UINT32 typ, FLOAT32 var, UINT32 bank) |
Modify variable for specific module/chip in ROD bank. | |
void | modifyABCDVarROD (UINT32 mid, UINT32 chip, UINT32 typ, FLOAT32 var, std::list< UINT32 > banks) |
Modify variable for specific module/chip in ROD bank. | |
void | modifyABCDVarROD (UINT32 mid, UINT32 typ, FLOAT32 var, UINT32 bank) |
Modify variable for specific module/chip in ROD bank. | |
void | modifyABCDVarROD (UINT32 mid, UINT32 typ, FLOAT32 var, std::list< UINT32 > banks) |
Modify variable for specific module/chip in ROD bank. | |
void | modifyABCDVarROD (UINT32 typ, FLOAT32 var, UINT32 bank) |
Modify variable in ROD bank. | |
void | modifyABCDVarROD (UINT32 typ, FLOAT32 var, std::list< UINT32 > banks) |
Modify variable in ROD bank. | |
void | modifyBOCParam (unsigned int rod, unsigned int channel, unsigned int type, unsigned int val) |
Modify a BOC variable. | |
void | modifyBOCParam (unsigned int type, unsigned int val) |
Modify all BOC parameters. | |
void | defaultScan (int type) |
Do a scan (hardcoded for testing). | |
void | tidyHistogramming () |
Tidy up just in case things got left behind. | |
TScanMonitor * | startAsyncScan (TScanDef tscan) |
Start an asynchronous (no SctApi control) scan. | |
void | doScan (TScanDef scan) |
Carry out the scan defined by scan. | |
void | awaitScan () |
void | doRawScan (TScanDef scan, int delay, int width, bool configure=true, bool clkBy2=false) |
Scan returning histograms of raw data. | |
void | sendRodTrigger (unsigned int rod, TTrigger trig, unsigned long count, int scan_point=0) |
Send one trigger to the currently configured modules. | |
unsigned long | sendTriggers (TTrigger trig, unsigned long count) |
send lots of triggers. | |
void | printABCDModule (int mid) |
Uses the sctConf method. | |
void | printABCDRodModule (int mid, int bank) |
Uses the sctConf method. | |
void | printBOCSetup (unsigned int rod) |
Print BOC setup of all channels. | |
void | currentBOCSetup (unsigned int rod) |
void | printBOCRegisters (unsigned int rod) |
Print all BOC registers. | |
void | saveBOCSetup (unsigned int rod, UINT32 bank) |
Save BOC setup. | |
void | saveBOCRegisters (unsigned int rod, UINT32 bank) |
Save BOC registers. | |
void | restoreBOCSetup (unsigned int rod, UINT32 bank) |
Response BOC setup. | |
void | restoreBOCRegisters (unsigned int rod, UINT32 bank) |
Restore BOC registers. | |
void | rawData (unsigned int rod, int delay, int units, bool setMask=true, TTrigger trig=TTrigger()) |
Print raw link data. | |
char * | probe (unsigned int rod, signed int harness=-1) |
Probe channels on a ROD to find out what's there. | |
char * | probeWithTrigger (unsigned int rod, TTrigger trig, signed int harness=-1) |
Probe channels on a ROD to find out what's there. | |
void | probeScan (unsigned int rod, TScanDef scan, signed int harness=-1) |
Probe channels on a ROD to find out what's there. | |
bool | checkAllModulesProbe (const char *value) |
Probe all modules and check if value returned is in string. | |
void | autoConfigure () |
Attempt to configure. | |
void | bocHistogram (unsigned int rod, unsigned int samples, unsigned int numLoops) |
Print "BOC Histogram". | |
void | rodMode (unsigned int rod, int mode, int flag, int fifoSetup, int nBins, int delay, int message) |
Do something to the rod mode! | |
void | standardRegisterDump (unsigned int rod) |
void | lasersOff () |
For extra safety (don't use with lots of modules connected. | |
void | scanEvents (unsigned int rod, int sl=-1, bool extFlag=false, bool errorType=false) |
Scan for events. | |
void | decodeEvent (unsigned int rod, int sl, int index, bool extFlag=false, bool errorType=false) |
Print decoded event. | |
void | decodeConfig (unsigned int rod, bool skipTrim=false, bool bypass=false) |
Decode config bit stream (only valid after SEND_CONFIG. | |
void | testLinkOutSelect (unsigned int rod, unsigned int link) |
void | setDebugOption (const char *opt) |
void | unsetDebugOption (const char *opt) |
void | listEnabledDebugOptions () |
void | listDebugOptions () |
void | debugStepHistogram () |
void | debugContinueHistogram () |
void | debugAbortHistogram () |
void | timSetFrequency (double trigFreq, double rstFreq) |
Set both trigger and reset frequency. | |
double | timGetResetFrequency () |
Hz. | |
double | timGetTriggerFrequency () |
kHz | |
void | freeTriggers () |
Use currently set frequency. | |
void | stopTriggers () |
Stop the TIM generating regular triggers. | |
void | timL1A () |
Tell the TIM to send an L1A. | |
void | timCalL1A (int delay) |
Tell TIM to send Cal + L1A. | |
void | timSoftReset () |
Tell the TIM to send a softReset. | |
void | timBCReset () |
Tell the TIM to send a BCR. | |
unsigned long | sendTimBurst (unsigned long count, int random, bool external=false) |
Send a burst of triggers from the TIM last l1id. | |
unsigned long | runTimSequence (unsigned long count, int random, bool external=false) |
Run a sequence from the TIM last l1id. | |
void | timVerbose () |
Print info about the TIM. | |
void | timRegLoad (int reg, UINT16 val) |
UINT16 | timReadRegister (int reg) |
void | requestHardReset (UINT32 mid) |
void | resumePolling () |
void | stopPolling () |
Private Member Functions | |
TApi (const TApi &) | |
TApi & | operator= (const TApi &) |
Private Attributes | |
SctApi::SctApi * | worker |
The worker that implements the functions. |
This class is processed to generate a Root dictionary that means it can be used from Root. This is basically a proxy for the SctApi class, all methods on it are delegated to an instance of the SctApi class which is created on construction.
A secondary purpose of this class is to extract the public interface from the SctApi class. This means that this class should be capable of doing anything it is necessary to do using the SctApi class, and also serves the purpose of testing the abstraction from the underlying RodModule classes and exceptions.
Definition at line 221 of file TApi.h.
|
Constructor.
|
|
Destructor.
Definition at line 54 of file TApi.cxx. References worker. |
|
Insert a primitive in a prim list.
Definition at line 265 of file TApi.cxx. References SctApi::SctApi::addDebugPrimList(), and worker. |
Here is the call graph for this function:
|
Attempt to configure.
Definition at line 644 of file TApi.cxx. References worker. |
|
Wait for a ROD to finish a primlist.
Definition at line 99 of file TApi.cxx. References SctApi::SctApi::awaitResponse(), and worker. |
Here is the call graph for this function:
|
Print "BOC Histogram".
Definition at line 666 of file TApi.cxx. References SctApi::SctApi::bocHistogram(), and worker. |
Here is the call graph for this function:
|
Change global run mode.
|
|
Probe all modules and check if value returned is in string.
Definition at line 640 of file TApi.cxx. References SctApi::SctApi::checkAllModulesProbe(), and worker. |
Here is the call graph for this function:
|
Reset BOC configuration.
Definition at line 253 of file TApi.cxx. References SctApi::SctApi::configureBOC(), and worker. |
Here is the call graph for this function:
|
Copy a single module config between banks.
Definition at line 492 of file TApi.cxx. References SctApi::SctApi::copyABCDModule(), and worker. |
Here is the call graph for this function:
|
Copy all module config between banks.
Definition at line 479 of file TApi.cxx. References SctApi::SctApi::copyABCDModules(), and worker. |
Here is the call graph for this function:
|
Create a prim list.
Definition at line 283 of file TApi.cxx. References SctApi::SctApi::createDebugPrimList(), and worker. |
Here is the call graph for this function:
|
Decode config bit stream (only valid after SEND_CONFIG.
Definition at line 737 of file TApi.cxx. References SctApi::SctApi::decodeConfig(), and worker. |
Here is the call graph for this function:
|
Print decoded event.
Definition at line 732 of file TApi.cxx. References SctApi::SctApi::decodeEvent(), and worker. |
Here is the call graph for this function:
|
Do a scan (hardcoded for testing).
Definition at line 344 of file TApi.cxx. References SctApi::SctApi::defaultScan(), and worker. |
Here is the call graph for this function:
|
Scan returning histograms of raw data.
Definition at line 395 of file TApi.cxx. References SctApi::SctApi::doRawScan(), TScanDef::update(), and worker. |
Here is the call graph for this function:
|
Carry out the scan defined by scan.
Definition at line 373 of file TApi.cxx. References SctApi::SctApi::doScan(), TScanDef::update(), and worker. |
Here is the call graph for this function:
|
Dump contents of a block of DSP memory to cout.
Definition at line 302 of file TApi.cxx. References SctApi::SctApi::dspBlockDump(), and worker. |
Here is the call graph for this function:
|
Dump contents of a block of DSP memory to a file.
Definition at line 307 of file TApi.cxx. References SctApi::SctApi::dspBlockDumpFile(), and worker. |
Here is the call graph for this function:
|
Read data.
Definition at line 316 of file TApi.cxx. References SctApi::SctApi::dspBlockRead(), and worker. |
Here is the call graph for this function:
|
Write a block of memory to a ROD DSP.
Definition at line 326 of file TApi.cxx. References SctApi::SctApi::dspBlockWrite(), and worker. |
Here is the call graph for this function:
|
Read a single 32b word from MasterDSP SDRAM via HPI.
Definition at line 333 of file TApi.cxx. References SctApi::SctApi::dspSingleRead(), and worker. |
Here is the call graph for this function:
|
Write a single 32b word to MasterDSP SDRAM via HPI.
Definition at line 339 of file TApi.cxx. References SctApi::SctApi::dspSingleWrite(), and worker. |
Here is the call graph for this function:
|
Using a primitive, send some data to the ROD. Expect an output. Definition at line 85 of file TApi.cxx. References SctApi::SctApi::echo(), and worker. |
Here is the call graph for this function:
|
Using a primitive, send some data to the ROD. Expect an output. Definition at line 90 of file TApi.cxx. References SctApi::SctApi::echoAll(), and worker. |
Here is the call graph for this function:
|
Using a primitive, send some data to the ROD. Expect an output. Definition at line 94 of file TApi.cxx. References SctApi::SctApi::echoSlave(), and worker. |
Here is the call graph for this function:
|
Return unique identifer from barrel geometry.
Definition at line 257 of file TApi.cxx. References SctApi::SctApi::findBarrelModule(), and worker. |
Here is the call graph for this function:
|
Return unique identifer from endcap geometry.
Definition at line 261 of file TApi.cxx. References SctApi::SctApi::findEndcapModule(), and worker. |
Here is the call graph for this function:
|
Return unique identifier for mur/module.
Definition at line 137 of file TApi.cxx. References SctApi::SctApi::findModule(), and worker. |
Here is the call graph for this function:
|
Definition at line 133 of file TApi.cxx. References SctApi::SctApi::findModule(), and worker. |
Here is the call graph for this function:
|
This creates its own primitive list and sends it to a slave DSP on the ROD. Period given in ms Definition at line 80 of file TApi.cxx. References SctApi::SctApi::flashLED(), and worker. |
Here is the call graph for this function:
|
Use currently set frequency.
Definition at line 755 of file TApi.cxx. References SctApi::SctApi::freeTriggers(), and worker. |
Here is the call graph for this function:
|
Get module from ROD to memory.
Definition at line 161 of file TApi.cxx. References SctApi::SctApi::getABCDModule(), and worker. |
Here is the call graph for this function:
|
Get all modules from ROD to memory.
Definition at line 157 of file TApi.cxx. References SctApi::SctApi::getABCDModules(), and worker. |
Here is the call graph for this function:
|
Get a response from the rod.
Definition at line 119 of file TApi.cxx. References SctApi::SctApi::getResponse(), and worker. |
Here is the call graph for this function:
|
Get a response from the rod.
Definition at line 103 of file TApi.cxx. References SctApi::SctApi::getResponse(), and worker. |
Here is the call graph for this function:
|
Get a message from a ROD text buffer Returns whether the action was completed.
Definition at line 128 of file TApi.cxx. References SctApi::SctApi::getRodMessage(), and worker. |
Here is the call graph for this function:
|
Initialise all the Rods and modules found in the configuration.
Definition at line 60 of file TApi.cxx. References SctApi::SctApi::initialiseAll(), and worker. |
Here is the call graph for this function:
|
For extra safety (don't use with lots of modules connected.
Definition at line 723 of file TApi.cxx. References SctApi::SctApi::lasersOff(), and worker. |
Here is the call graph for this function:
|
Reload configuration from the "configuration database".
Definition at line 245 of file TApi.cxx. References SctApi::SctApi::loadConfiguration(), and worker. |
Here is the call graph for this function:
|
Load module configurations from the "configuration database".
Definition at line 249 of file TApi.cxx. References SctApi::SctApi::loadModuleConfigurations(), and worker. |
Here is the call graph for this function:
|
Modify mask of module in online configuration.
Definition at line 165 of file TApi.cxx. References SctApi::SctApi::modifyABCDMask(), and worker. |
Here is the call graph for this function:
|
Modify trims of module in online configuration.
Definition at line 169 of file TApi.cxx. References SctApi::SctApi::modifyABCDTrims(), and worker. |
Here is the call graph for this function:
|
Modify variable of one chip of module in online configuration.
Definition at line 181 of file TApi.cxx. References SctApi::SctApi::modifyABCDVar(), and worker. |
Here is the call graph for this function:
|
Modify variable of module in online configuration.
Definition at line 177 of file TApi.cxx. References SctApi::SctApi::modifyABCDVar(), and worker. |
Here is the call graph for this function:
|
Modify variable of all modules in online configuration.
Definition at line 173 of file TApi.cxx. References SctApi::SctApi::modifyABCDVar(), and worker. |
Here is the call graph for this function:
|
Modify variable in ROD bank.
Definition at line 227 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify variable in ROD bank.
Definition at line 223 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify variable for specific module/chip in ROD bank.
Definition at line 215 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify variable for specific module/chip in ROD bank.
Definition at line 211 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify variable for specific module/chip in ROD bank.
Definition at line 203 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify variable for specific module/chip in ROD bank.
Definition at line 199 of file TApi.cxx. References SctApi::SctApi::modifyABCDVarROD(), and worker. |
Here is the call graph for this function:
|
Modify all BOC parameters.
Definition at line 241 of file TApi.cxx. References worker. |
|
Modify a BOC variable.
Definition at line 235 of file TApi.cxx. References worker. |
|
Uses the sctConf method.
Definition at line 509 of file TApi.cxx. References SctApi::SctApi::printABCDModule(), and worker. |
Here is the call graph for this function:
|
Uses the sctConf method.
Definition at line 513 of file TApi.cxx. References worker. |
|
Print all BOC registers.
Definition at line 541 of file TApi.cxx. References worker. |
|
Print BOC setup of all channels.
Definition at line 518 of file TApi.cxx. References worker. |
|
Probe channels on a ROD to find out what's there.
Definition at line 577 of file TApi.cxx. References SctApi::SctApi::probe(), and worker. |
Here is the call graph for this function:
|
Probe channels on a ROD to find out what's there.
Definition at line 615 of file TApi.cxx. References TScanDef::update(), and worker. |
Here is the call graph for this function:
|
Probe channels on a ROD to find out what's there.
Definition at line 591 of file TApi.cxx. References TriggerWrapper::getTrigger(), SctApi::SctApi::probeWithTrigger(), TTrigger::update(), and worker. |
Here is the call graph for this function:
|
Print raw link data.
Definition at line 565 of file TApi.cxx. References TriggerWrapper::getTrigger(), SctApi::SctApi::rawData(), TTrigger::update(), and worker. |
Here is the call graph for this function:
|
Read one ROD Command Register via HPI.
Definition at line 438 of file TApi.cxx. References SctApi::SctApi::readRodCommandReg(), and worker. |
Here is the call graph for this function:
|
Read one ROD Status Register via HPI.
Definition at line 443 of file TApi.cxx. References SctApi::SctApi::readRodStatusReg(), and worker. |
Here is the call graph for this function:
|
Restore BOC registers.
Definition at line 561 of file TApi.cxx. References SctApi::SctApi::restoreBOCRegisters(), and worker. |
Here is the call graph for this function:
|
Response BOC setup.
Definition at line 557 of file TApi.cxx. References SctApi::SctApi::restoreBOCSetup(), and worker. |
Here is the call graph for this function:
|
Return the module configuration data for the required module.
Definition at line 505 of file TApi.cxx. References SctApi::SctApi::retrieveModule(), and worker. |
Here is the call graph for this function:
|
Do something to the rod mode!
Definition at line 660 of file TApi.cxx. References SctApi::SctApi::rodMode(), and worker. |
Here is the call graph for this function:
|
Run a sequence from the TIM last l1id.
Definition at line 783 of file TApi.cxx. References worker. |
|
Save BOC registers.
Definition at line 553 of file TApi.cxx. References SctApi::SctApi::saveBOCRegisters(), and worker. |
Here is the call graph for this function:
|
Save BOC setup.
Definition at line 549 of file TApi.cxx. References SctApi::SctApi::saveBOCSetup(), and worker. |
Here is the call graph for this function:
|
Scan for events.
Definition at line 727 of file TApi.cxx. References SctApi::SctApi::scanEvents(), and worker. |
Here is the call graph for this function:
|
Definition at line 149 of file TApi.cxx. References SctApi::SctApi::sendABCDModule(), and worker. |
Here is the call graph for this function:
|
Definition at line 141 of file TApi.cxx. References SctApi::SctApi::sendAllABCDModules(), and worker. |
Here is the call graph for this function:
|
Send the previously created prim list.
Definition at line 270 of file TApi.cxx. References SctApi::SctApi::sendDebugPrimList(), and worker. |
Here is the call graph for this function:
|
Send the previously created prim list to all RODs.
Definition at line 274 of file TApi.cxx. References SctApi::SctApi::sendDebugPrimListAll(), and worker. |
Here is the call graph for this function:
|
Send prim list to slave.
Definition at line 278 of file TApi.cxx. References SctApi::SctApi::sendDebugSlavePrimList(), and worker. |
Here is the call graph for this function:
|
Send one trigger to the currently configured modules.
Definition at line 423 of file TApi.cxx. References TriggerWrapper::getTrigger(), SctApi::SctApi::sendRodTrigger(), TTrigger::update(), and worker. |
Here is the call graph for this function:
|
Send a burst of triggers from the TIM last l1id.
Definition at line 779 of file TApi.cxx. References worker. |
|
send lots of triggers. frequency and source worked out from trigger
Definition at line 412 of file TApi.cxx. References TriggerWrapper::getTrigger(), SctApi::SctApi::sendTriggers(), TTrigger::update(), and worker. |
Here is the call graph for this function:
|
Set module config in ROD bank.
Definition at line 448 of file TApi.cxx. References SctApi::SctApi::setABCDModule(), and worker. |
Here is the call graph for this function:
|
Set all module configs in a ROD bank.
Definition at line 470 of file TApi.cxx. References SctApi::SctApi::setABCDModules(), and worker. |
Here is the call graph for this function:
|
update this bank when doing modifyABCDVar
Definition at line 193 of file TApi.cxx. References SctApi::SctApi::setAutoUpdateBanks(), and worker. |
Here is the call graph for this function:
|
update these banks when doing modifyABCDVar
Definition at line 185 of file TApi.cxx. References SctApi::SctApi::setAutoUpdateBanks(), and worker. |
Here is the call graph for this function:
|
Change the run number.
Definition at line 68 of file TApi.cxx. References SctApi::SctApi::setRunNumber(), and worker. |
Here is the call graph for this function:
|
Change the scan number.
Definition at line 72 of file TApi.cxx. References SctApi::SctApi::setScanNumber(), and worker. |
Here is the call graph for this function:
|
Shutdown everything.
Definition at line 64 of file TApi.cxx. References SctApi::SctApi::shutdownAll(), and worker. |
Here is the call graph for this function:
|
Start an asynchronous (no SctApi control) scan.
Definition at line 352 of file TApi.cxx. References SctApi::SctApi::startAsyncScan(), TScanDef::update(), and worker. |
Here is the call graph for this function:
|
Stop the TIM generating regular triggers.
Definition at line 759 of file TApi.cxx. References SctApi::SctApi::stopTriggers(), and worker. |
Here is the call graph for this function:
|
Tidy up just in case things got left behind.
Definition at line 348 of file TApi.cxx. References SctApi::SctApi::tidyHistogramming(), and worker. |
Here is the call graph for this function:
|
Tell the TIM to send a BCR.
Definition at line 775 of file TApi.cxx. References SctApi::SctApi::timBCReset(), and worker. |
Here is the call graph for this function:
|
Tell TIM to send Cal + L1A.
Definition at line 767 of file TApi.cxx. References SctApi::SctApi::timCalL1A(), and worker. |
Here is the call graph for this function:
|
Hz.
Definition at line 751 of file TApi.cxx. References SctApi::SctApi::timGetResetFrequency(), and worker. |
Here is the call graph for this function:
|
kHz
Definition at line 747 of file TApi.cxx. References SctApi::SctApi::timGetTriggerFrequency(), and worker. |
Here is the call graph for this function:
|
Tell the TIM to send an L1A.
Definition at line 763 of file TApi.cxx. References SctApi::SctApi::timL1A(), and worker. |
Here is the call graph for this function:
|
Set both trigger and reset frequency.
Definition at line 742 of file TApi.cxx. References SctApi::SctApi::timSetFrequency(), and worker. |
Here is the call graph for this function:
|
Tell the TIM to send a softReset.
Definition at line 771 of file TApi.cxx. References SctApi::SctApi::timSoftReset(), and worker. |
Here is the call graph for this function:
|
Print info about the TIM.
Definition at line 787 of file TApi.cxx. References SctApi::SctApi::timVerbose(), and worker. |
Here is the call graph for this function:
|