How to access config objects from virtual sequence?

Hello,

I have a reactive sequence that runs forever reacting to DUT’s behaviour. But, this sequence also needs information based on activity from other interfaces and from virtual sequence which coordinates all the sequences while running stimulus. My plan was to set this information in the config object of the agent, which has the sequencer on which the reactive sequence runs. Can I access env config object or config object other agents from the virtual sequence?

The config object’s are created and set into config db from env config object, which in turn gets created from the base test.

Is there any other bettor method to set the config objects of various agents from virtual sequence?

Thanks,
Madhu

In reply to mseyunni:

Why don’t use create a method in virtual sequence and pass object configuration (as parameter) to that method? You can pass it from your test where you start virtual sequence.

In reply to cuonghl:

Depending upon the stimulus the state of the DUT might change into various modes, which I happen to know from the virtual sequence as it is the highest level of stimulus for me. This state of the DUT is what I would like to pass on to the reactive sequence which uses this DUT mode and based on the activity of the DUT performs different actions.